aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-vee-folder.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-19 10:17:48 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-19 10:17:48 +0800
commitdab04ddab36fa0e882479901900f880284bfb595 (patch)
treebff6a4156f13307ee0c5e7e64d568fbb5598caba /camel/camel-vee-folder.c
parent670c10ba49c831e83852cf9b600df861116bfca2 (diff)
downloadgsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.tar
gsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.tar.gz
gsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.tar.bz2
gsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.tar.lz
gsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.tar.xz
gsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.tar.zst
gsoc2013-evolution-dab04ddab36fa0e882479901900f880284bfb595.zip
** See #58641.
2004-05-19 Not Zed <NotZed@Ximian.com> ** See #58641. * camel-vee-folder.c (vee_sync): don't rebuild auto-type vfolders. they should always be consistent and it saves a lot of unecessary work. * camel-store.c (store_sync): we don't want to sync any vfolders as part of the store sync call. its used for a different purpose in vFolders. oh well its a hack. svn path=/trunk/; revision=25967
Diffstat (limited to 'camel/camel-vee-folder.c')
-rw-r--r--camel/camel-vee-folder.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel-vee-folder.c b/camel/camel-vee-folder.c
index cf4301df03..c74b001cc9 100644
--- a/camel/camel-vee-folder.c
+++ b/camel/camel-vee-folder.c
@@ -634,7 +634,9 @@ vee_sync(CamelFolder *folder, gboolean expunge, CamelException *ex)
break;
}
- if (vee_folder_build_folder(vf, f, ex) == -1)
+ /* auto update vfolders shouldn't need a rebuild */
+ if ((vf->flags & CAMEL_STORE_VEE_FOLDER_AUTO) == 0
+ && vee_folder_build_folder(vf, f, ex) == -1)
break;
node = node->next;