From b9cdb00a646854112666c37c48fbda3d29faca08 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 11 Dec 2001 03:24:59 +0000 Subject: Don't expunge when we sync anymore, this fixes bug #4472. 2001-12-10 Jeffrey Stedfast * mail-ops.c (filter_folder_filter): Don't expunge when we sync anymore, this fixes bug #4472. svn path=/trunk/; revision=14969 --- mail/ChangeLog | 5 +++++ mail/mail-ops.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index dd0bd3b2f6..cbf4776f71 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-12-10 Jeffrey Stedfast + + * mail-ops.c (filter_folder_filter): Don't expunge when we sync + anymore, this fixes bug #4472. + 2001-12-04 Jeffrey Stedfast * mail-autofilter.c (rule_from_message): Make sure that the diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 9820e855e9..8626a5acbb 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -123,9 +123,9 @@ filter_folder_filter (struct _mail_msg *mm) if (folder_uids) camel_folder_free_uids (folder, folder_uids); - /* sync and expunge */ + /* sync our source folder */ if (!m->cache) - camel_folder_sync (folder, TRUE, camel_exception_is_set (&mm->ex) ? NULL : &mm->ex); + camel_folder_sync (folder, FALSE, camel_exception_is_set (&mm->ex) ? NULL : &mm->ex); camel_folder_thaw (folder); if (m->destination) -- cgit