diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-06-24 04:07:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-24 04:07:07 +0800 |
commit | a13993737588ffc3d8c2caedf235634e8eadfe1c (patch) | |
tree | 434bd0aab4c16adf3b0e1fb21e8a144f2ee6a89e /camel/providers/imap4/camel-imap4-store.c | |
parent | 038b8b12ef9e3338260c08b1333221a93e23b852 (diff) | |
download | gsoc2013-evolution-a13993737588ffc3d8c2caedf235634e8eadfe1c.tar.gz gsoc2013-evolution-a13993737588ffc3d8c2caedf235634e8eadfe1c.tar.zst gsoc2013-evolution-a13993737588ffc3d8c2caedf235634e8eadfe1c.zip |
Hide password, etc info in the fi->uri's.
2004-06-23 Jeffrey Stedfast <fejj@novell.com>
* providers/imap4/camel-imap4-store.c (imap4_build_folder_info):
Hide password, etc info in the fi->uri's.
* providers/imap4/camel-imap4-provider.c: Specify that the
fragment is the path.
svn path=/trunk/; revision=26482
Diffstat (limited to 'camel/providers/imap4/camel-imap4-store.c')
-rw-r--r-- | camel/providers/imap4/camel-imap4-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap4/camel-imap4-store.c b/camel/providers/imap4/camel-imap4-store.c index 1dfb934780..6c80dcd777 100644 --- a/camel/providers/imap4/camel-imap4-store.c +++ b/camel/providers/imap4/camel-imap4-store.c @@ -1083,7 +1083,7 @@ imap4_build_folder_info (CamelStore *store, const char *top, guint32 flags, GPtr fi->full_name = name; fi->name = g_strdup (p ? p + 1: name); - fi->uri = camel_url_to_string (url, 0); + fi->uri = camel_url_to_string (url, CAMEL_URL_HIDE_ALL); fi->flags = list->flags; fi->unread = -1; fi->total = -1; |