aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-11-13 04:31:36 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-11-13 04:31:36 +0800
commitc479d064a2a21768ee7fde5dbceecfac945dca4d (patch)
tree18fb396f58ef5e5100a615ba42bfb60f1e9a9ef3 /filter
parentb0fea6b06b29bf202780c102b72810ed92b3051a (diff)
downloadgsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.tar
gsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.tar.gz
gsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.tar.bz2
gsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.tar.lz
gsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.tar.xz
gsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.tar.zst
gsoc2013-evolution-c479d064a2a21768ee7fde5dbceecfac945dca4d.zip
If there is a default folder and the message hasn't been deleted then...
2000-11-12 Jeffrey Stedfast <fejj@helixcode.com> * filter-driver.c (filter_driver_filter_message): If there is a default folder and the message hasn't been deleted then... should be: If there is a default folder and the message hasn't been copied to another folder... svn path=/trunk/; revision=6551
Diffstat (limited to 'filter')
-rw-r--r--filter/ChangeLog7
-rw-r--r--filter/filter-driver.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index 86010b0cd1..c7778c5ca6 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,10 @@
+2000-11-12 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * filter-driver.c (filter_driver_filter_message): If there is a
+ default folder and the message hasn't been deleted then... should
+ be: If there is a default folder and the message hasn't been
+ copied to another folder...
+
2000-11-10 Christopher James Lahey <clahey@helixcode.com>
* e-search-bar.c: Made the underline show up properly in the main
diff --git a/filter/filter-driver.c b/filter/filter-driver.c
index e07b58dc0c..666afa0b8e 100644
--- a/filter/filter-driver.c
+++ b/filter/filter-driver.c
@@ -783,7 +783,7 @@ filter_driver_filter_message (FilterDriver *driver, CamelMimeMessage *message, C
g_string_free (fsearch, TRUE);
g_string_free (faction, TRUE);
- if (p->defaultfolder && !p->deleted) {
+ if (p->defaultfolder && !p->copied) {
/* copy it to the default inbox */
filter_driver_log (driver, FILTER_LOG_ACTION, "Copy to default folder");
mail_tool_camel_lock_up ();