diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-16 06:19:44 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-16 06:19:44 +0800 |
commit | cd157eecb933748212bf87b41dcf5fa863e75fd5 (patch) | |
tree | 29dc32794de0449c4a7e5fb544150e57ea4183bb /camel/ChangeLog | |
parent | e1de51e60e715983d1063810ac0cbfd80f99cc2c (diff) | |
download | gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.tar gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.tar.gz gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.tar.bz2 gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.tar.lz gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.tar.xz gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.tar.zst gsoc2013-evolution-cd157eecb933748212bf87b41dcf5fa863e75fd5.zip |
Kill. Folders are now always open, and handle "closing" sorts of
* camel-folder.c: (camel_folder_open, camel_folder_is_open,
camel_folder_get_mode): Kill. Folders are now always open, and
handle "closing" sorts of operations at sync or finalize time.
(camel_folder_sync): renamed from camel_folder_close. Syncs state
to the store but doesn't necessarily close/disconnect.
* providers/*/camel-*-folder.c: Merge "open" methods into "init"
methods. Rename close to sync and update appropriately.
* providers/imap/camel-imap-store.c: Remove camel_imap_store_open
and camel_imap_store_close, which should not have been copied from
the POP provider (where the exist to work around limitations of
the POP protocol).
svn path=/trunk/; revision=3581
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r-- | camel/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index fbe956b644..f49ba73abe 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,19 @@ 2000-06-15 Dan Winship <danw@helixcode.com> + * camel-folder.c: (camel_folder_open, camel_folder_is_open, + camel_folder_get_mode): Kill. Folders are now always open, and + handle "closing" sorts of operations at sync or finalize time. + (camel_folder_sync): renamed from camel_folder_close. Syncs state + to the store but doesn't necessarily close/disconnect. + + * providers/*/camel-*-folder.c: Merge "open" methods into "init" + methods. Rename close to sync and update appropriately. + + * providers/imap/camel-imap-store.c: Remove camel_imap_store_open + and camel_imap_store_close, which should not have been copied from + the POP provider (where the exist to work around limitations of + the POP protocol). + * providers/mbox/camel-mbox-summary.c: fix a bug. (don't expunge deleted messages if called with expunge == FALSE) |