diff options
author | 8 <NotZed@Ximian.com> | 2001-10-28 13:11:53 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-28 13:11:53 +0800 |
commit | 4689dccf16912b7f9f8db5eade1d506f725024f9 (patch) | |
tree | fd17e4a5fa30832519dbef1a651569ee46c42923 /mail/mail-vfolder.h | |
parent | 78b66af8ce96ab41e476d3ebf36cd85fced6d781 (diff) | |
download | gsoc2013-evolution-4689dccf16912b7f9f8db5eade1d506f725024f9.tar.gz gsoc2013-evolution-4689dccf16912b7f9f8db5eade1d506f725024f9.tar.zst gsoc2013-evolution-4689dccf16912b7f9f8db5eade1d506f725024f9.zip |
Implemented. (mail_vfolder_rename_uri): We do want to check renamed uri's
2001-10-28 <NotZed@Ximian.com>
* mail-vfolder.c (mail_vfolder_rename_uri): Implemented.
(mail_vfolder_rename_uri): We do want to check renamed uri's from
vstores.
(mail_vfolder_delete_uri): Same.
(store_folder_renamed): Fix the folder hash at the same time.
* mail-folder-cache.c (real_flush_updates): Pass the rename event
to vfolder rename uri.
* mail-local.c (mail_local_folder_reconfigure): Change the store
path to be same as parent + mbox to be full path.
(mls_delete_folder): Change store path to be parent path, and mbox
to be full path.
(mail_local_folder_reconfigure): Fix a leak of tmpname.
* component-factory.c (xfer_folder): Only do a rename if we have
remove set, cleaned up logic a bit.
(idle_quit): Put the components still active check last last of
all.
(storage_create_folder): IF we have a fragment, use that as part
part for parent.
svn path=/trunk/; revision=14276
Diffstat (limited to 'mail/mail-vfolder.h')
-rw-r--r-- | mail/mail-vfolder.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-vfolder.h b/mail/mail-vfolder.h index 4dde188a69..9561185c4a 100644 --- a/mail/mail-vfolder.h +++ b/mail/mail-vfolder.h @@ -24,6 +24,9 @@ void vfolder_gui_add_from_mlist (CamelMimeMessage *msg, const char *mlist, const /* add a uri that is now (un)available to vfolders in a transient manner */ void mail_vfolder_add_uri(CamelStore *store, const char *uri, int remove); +/* note that a folder has changed name (uri) */ +void mail_vfolder_rename_uri(CamelStore *store, const char *from, const char *to); + /* remove a uri that should be removed from vfolders permanently */ void mail_vfolder_delete_uri(CamelStore *store, const char *uri); |