diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 3c9634948f..1a55b40fc8 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2000-09-11 Jeffrey Stedfast <fejj@helixcode.com> + * mail-ops.c (do_fetch_mail): Don't have the filter driver + self_destruct. + +2000-09-11 Jeffrey Stedfast <fejj@helixcode.com> + * mail-ops.c (do_fetch_mail): If we're fetching from an mbox formatted file then we need to do some special-casing. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 482bfd430e..c283f16ef9 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -209,7 +209,7 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex) filter_driver_run (filter, message, info, input->destination, FILTER_SOURCE_INCOMING, - TRUE, ex); + FALSE, ex); if (free_info) camel_message_info_free (info); |