summaryrefslogtreecommitdiff
path: root/src/camel/camel-vee-store.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/camel/camel-vee-store.c')
-rw-r--r--src/camel/camel-vee-store.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/camel/camel-vee-store.c b/src/camel/camel-vee-store.c
index a8414b210..09bac5e4e 100644
--- a/src/camel/camel-vee-store.c
+++ b/src/camel/camel-vee-store.c
@@ -514,6 +514,13 @@ vee_store_rename_folder_sync (CamelStore *store,
return TRUE;
}
+static gboolean
+vee_store_get_can_auto_save_changes (CamelStore *store)
+{
+ /* Let only the real folder auto-save the changes */
+ return FALSE;
+}
+
static void
camel_vee_store_class_init (CamelVeeStoreClass *class)
{
@@ -538,6 +545,7 @@ camel_vee_store_class_init (CamelVeeStoreClass *class)
store_class->get_trash_folder_sync = vee_store_get_trash_folder_sync;
store_class->delete_folder_sync = vee_store_delete_folder_sync;
store_class->rename_folder_sync = vee_store_rename_folder_sync;
+ store_class->get_can_auto_save_changes = vee_store_get_can_auto_save_changes;
g_object_class_install_property (
object_class,