aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-09-28 01:54:48 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-09-28 01:54:48 +0800
commit0347b891ddc691fa888efa1bcd08a304235abf9b (patch)
treebe9ce7f8b056b67d0623233de39ae84305bdb15f /mail/mail-ops.c
parent1a36cc706eadea5e0b8b5a1a5cb3e4f9261adcbb (diff)
downloadgsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.tar
gsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.tar.gz
gsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.tar.bz2
gsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.tar.lz
gsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.tar.xz
gsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.tar.zst
gsoc2013-evolution-0347b891ddc691fa888efa1bcd08a304235abf9b.zip
If the message has been deleted, don't try filtering it - skip to the next
2000-09-27 Jeffrey Stedfast <fejj@helixcode.com> * mail-ops.c (do_filter_ondemand): If the message has been deleted, don't try filtering it - skip to the next message. Fixes bugzilla bug #639. svn path=/trunk/; revision=5601
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index a2fd820dfa..d7edad424b 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -4,6 +4,7 @@
/*
* Author :
* Dan Winship <danw@helixcode.com>
+ * Jeffrey Stedfast <fejj@helixcode.com>
* Peter Williams <peterw@helixcode.com>
*
* Copyright 2000 Helix Code, Inc. (http://www.helixcode.com)
@@ -346,6 +347,13 @@ do_filter_ondemand (gpointer in_data, gpointer op_data, CamelException *ex)
free_info = TRUE;
}
+ /* check if this message is marked for deletion */
+ if (info->flags & CAMEL_MESSAGE_DELETED) {
+ /* don't filter messages which have been marked as deleted */
+ camel_object_unref (CAMEL_OBJECT (message));
+ continue;
+ }
+
filtered = filter_driver_run (driver, message, info, NULL,
FILTER_SOURCE_DEMAND, ex);