
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
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
|
|
#ifndef _MAIL_VFOLDER_H
|
|
#define _MAIL_VFOLDER_H
|
|
|
|
#include "Evolution.h"
|
|
#include "evolution-storage.h"
|
|
#include "evolution-shell-component.h"
|
|
|
|
#include "camel/camel-folder.h"
|
|
#include "camel/camel-mime-message.h"
|
|
#include "filter/vfolder-rule.h"
|
|
#include "filter/filter-part.h"
|
|
|
|
void vfolder_load_storage(GNOME_Evolution_Shell shell);
|
|
|
|
void vfolder_edit (void);
|
|
void vfolder_edit_rule(const char *name);
|
|
FilterPart *vfolder_create_part (const char *name);
|
|
FilterRule *vfolder_clone_rule (FilterRule *in);
|
|
void vfolder_gui_add_rule (VfolderRule *rule);
|
|
void vfolder_gui_add_from_message (CamelMimeMessage *msg, int flags, const char *source);
|
|
void vfolder_gui_add_from_mlist (CamelMimeMessage *msg, const char *mlist, const char *source);
|
|
|
|
/* 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);
|
|
|
|
/* close up, clean up */
|
|
void mail_vfolder_shutdown (void);
|
|
|
|
#endif
|