diff options
author | 8 <NotZed@Ximian.com> | 2001-10-28 13:10:56 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-28 13:10:56 +0800 |
commit | 78b66af8ce96ab41e476d3ebf36cd85fced6d781 (patch) | |
tree | 271e7655e09c1a0a89798739e941d519765cfaa9 /camel/camel-store.h | |
parent | b1d36fe27d0434b98176a670ca67e64e5d4bb11e (diff) | |
download | gsoc2013-evolution-78b66af8ce96ab41e476d3ebf36cd85fced6d781.tar.gz gsoc2013-evolution-78b66af8ce96ab41e476d3ebf36cd85fced6d781.tar.zst gsoc2013-evolution-78b66af8ce96ab41e476d3ebf36cd85fced6d781.zip |
Use path not protocol as the path part of the uri of the folder_created
2001-10-28 <NotZed@Ximian.com>
* providers/local/camel-local-folder.c
(camel_local_folder_construct): Use path not protocol as the path
part of the uri of the folder_created event.
* providers/local/camel-maildir-store.c (scan_dir): If FAST is
set, dont try and scan for unread counts.
* providers/local/camel-local-store.c (create_folder): Implement,
just return the folderinfo of the folder matched, not all of it.
* camel-store.c (camel_store_rename_folder): Rename the
camelfolders before emitting the folderchanged event (otherwise
vstore fails to pick up change.
* camel-store.c (camel_store_init): Always use a default dir_sep
of '/'.
* camel-store.h (struct _CamelStore): Added a dir_sep to the base
store so rename and whatnot can work, temporary fix for mixed dir
separator in folder name api's.
* providers/imap/camel-map-store.c:
(imap_connect_online): Also set the store's dir_sep here.
(imap_connect_offline): "
svn path=/trunk/; revision=14275
Diffstat (limited to 'camel/camel-store.h')
-rw-r--r-- | camel/camel-store.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/camel/camel-store.h b/camel/camel-store.h index 6b66811e24..af963fe872 100644 --- a/camel/camel-store.h +++ b/camel/camel-store.h @@ -78,6 +78,11 @@ struct _CamelStore GHashTable *folders; int flags; + + /* FIXME: This is a temporary measure until IMAP namespaces are properly implemented, + after that, all external folder api's will assume a dir separator of '/' */ + /* This is always a copy of IMAP_STORE()->dir_sep, or '/' */ + char dir_sep; }; |