aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-07-03 11:11:03 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-07-03 11:11:03 +0800
commit5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4 (patch)
tree5c612a2e6c6a01b41688e522235ae2009a50c774 /camel/providers/local
parentd49a387afc10d7e43f582eda2d14cda03ae2bfe5 (diff)
downloadgsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.tar
gsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.tar.gz
gsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.tar.bz2
gsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.tar.lz
gsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.tar.xz
gsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.tar.zst
gsoc2013-evolution-5c2ce7a4cb22a4358a8b509888e68222bc7a3bd4.zip
If we get an exception from the child sync, update the exception string so
2002-07-03 Not Zed <NotZed@Ximian.com> * camel-vee-folder.c (vee_sync): If we get an exception from the child sync, update the exception string so we know where it really was. * camel-vee-store.c (change_folder): Util to emit created/deleted events. (vee_get_folder): If the folder has path elements, and its parents dont exist, create dummy no-select nodes. This is for bug #4246. (vee_delete_folder): Use change_folder() to save code. * providers/local/camel-mbox-folder.c (mbox_set_message_flags): Only set xevchange if we're storing status headers in pine format, so we dont do a full sync every time any flag changes. svn path=/trunk/; revision=17360
Diffstat (limited to 'camel/providers/local')
-rw-r--r--camel/providers/local/camel-mbox-folder.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/providers/local/camel-mbox-folder.c b/camel/providers/local/camel-mbox-folder.c
index 9eba280f24..120f72e0bf 100644
--- a/camel/providers/local/camel-mbox-folder.c
+++ b/camel/providers/local/camel-mbox-folder.c
@@ -431,7 +431,8 @@ static void
mbox_set_message_flags(CamelFolder *folder, const char *uid, guint32 flags, guint32 set)
{
/* Basically, if anything could change the Status line, presume it does */
- if (flags & (CAMEL_MESSAGE_SEEN|CAMEL_MESSAGE_FLAGGED|CAMEL_MESSAGE_ANSWERED|CAMEL_MESSAGE_DELETED)) {
+ if (((CamelMboxSummary *)folder->summary)->xstatus
+ && (flags & (CAMEL_MESSAGE_SEEN|CAMEL_MESSAGE_FLAGGED|CAMEL_MESSAGE_ANSWERED|CAMEL_MESSAGE_DELETED))) {
flags |= CAMEL_MESSAGE_FOLDER_XEVCHANGE|CAMEL_MESSAGE_FOLDER_FLAGGED;
set |= CAMEL_MESSAGE_FOLDER_XEVCHANGE|CAMEL_MESSAGE_FOLDER_FLAGGED;
}