aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 ();