diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-22 03:40:20 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-22 03:40:20 +0800 |
commit | 8fb132dab0e8291ed8ac2017a329c23148cc5f1a (patch) | |
tree | 378a43c24ae1920607f4c473be6ffa73ebbdeccf /camel/providers/imap/camel-imap-store.h | |
parent | 0b1e68cb22f92bfe82b3fcbca4d57814cc26ad4f (diff) | |
download | gsoc2013-evolution-8fb132dab0e8291ed8ac2017a329c23148cc5f1a.tar.gz gsoc2013-evolution-8fb132dab0e8291ed8ac2017a329c23148cc5f1a.tar.zst gsoc2013-evolution-8fb132dab0e8291ed8ac2017a329c23148cc5f1a.zip |
INBOX is case-insensitive. (get_root_folder_name): Make the root folder ""
* providers/imap/camel-imap-store.c (get_folder_name): INBOX is
case-insensitive.
(get_root_folder_name): Make the root folder "" rather than "/".
(get_folder): Update for root folder name change.
(camel_imap_store_get_toplevel_dir): Removed. (Unused, unneeded.)
(camel_imap_store_folder_path): New function to turn a Camel
folder name into the corresponding namespaced IMAP path.
(imap_folder_exists): Make this take a store and a path rather
than a folder.
(imap_create): Likewise
(get_folder): Update for camel_imap_store_folder_path and other
changes.
(check_current_folder): Likewise.
* providers/imap/camel-imap-folder.c: Change a bunch of CamelStore
variables to CamelImapStore (and add a few more) to prevent excess
gratuitous casting. Use camel_imap_store_folder_path where
appropriate.
(camel_imap_folder_new): Update for root folder name change.
svn path=/trunk/; revision=5541
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r-- | camel/providers/imap/camel-imap-store.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h index 2b946f065c..fe7b9f2f78 100644 --- a/camel/providers/imap/camel-imap-store.h +++ b/camel/providers/imap/camel-imap-store.h @@ -110,7 +110,7 @@ gint camel_imap_command_continuation_with_stream (CamelImapStore *store, /* Standard Camel function */ CamelType camel_imap_store_get_type (void); -const gchar *camel_imap_store_get_toplevel_dir (CamelImapStore *store); +char *camel_imap_store_folder_path (CamelImapStore *store, const char *name); #ifdef __cplusplus } |