aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-01-24 07:35:11 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-01-24 07:35:11 +0800
commitcda839f0984efbe445a3a7746bcb03d46b4b833e (patch)
tree498d3f98b9bbad59c4f7b3fd39f457be23066bbb
parent8b2495dcd40ef639afc1314103ed5f4e00abd227 (diff)
downloadgsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.tar
gsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.tar.gz
gsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.tar.bz2
gsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.tar.lz
gsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.tar.xz
gsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.tar.zst
gsoc2013-evolution-cda839f0984efbe445a3a7746bcb03d46b4b833e.zip
Remove the 'finished message' bit.
2001-01-24 Not Zed <NotZed@Ximian.com> * camel-filter-driver.c (camel_filter_driver_filter_mbox): Remove the 'finished message' bit. svn path=/trunk/; revision=7761
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-filter-driver.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index a9a0f69a14..7909ef0a2c 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-24 Not Zed <NotZed@Ximian.com>
+
+ * camel-filter-driver.c (camel_filter_driver_filter_mbox): Remove
+ the 'finished message' bit.
+
2001-01-23 Dan Winship <danw@ximian.com>
* providers/imap/camel-imap-wrapper.c: Add a lock around the
diff --git a/camel/camel-filter-driver.c b/camel/camel-filter-driver.c
index a39186cd85..670ce89b02 100644
--- a/camel/camel-filter-driver.c
+++ b/camel/camel-filter-driver.c
@@ -618,7 +618,7 @@ camel_filter_driver_filter_mbox (CamelFilterDriver *driver, const char *mbox, Ca
if (st.st_size > 0)
pc = (int)(100.0 * ((double)camel_mime_parser_tell (mp) / (double)st.st_size));
- report_status (driver, CAMEL_FILTER_STATUS_START, pc, "Getting message %d (%d%% of file)", i, pc);
+ report_status (driver, CAMEL_FILTER_STATUS_START, pc, "Getting message %d (%d%%)", i, pc);
msg = camel_mime_message_new ();
if (camel_mime_part_construct_from_parser (CAMEL_MIME_PART (msg), mp) == -1) {
@@ -635,7 +635,6 @@ camel_filter_driver_filter_mbox (CamelFilterDriver *driver, const char *mbox, Ca
goto fail;
}
- report_status (driver, CAMEL_FILTER_STATUS_END, pc, "Finished message %d", i);
i++;
/* skip over the FROM_END state */
@@ -790,6 +789,7 @@ camel_filter_driver_filter_message (CamelFilterDriver *driver, CamelMimeMessage
filtered = TRUE;
camel_filter_driver_log (driver, FILTER_LOG_ACTION, "Copy to default folder");
camel_folder_append_message (p->defaultfolder, p->message, p->info, p->ex);
+ printf("copying to default folder\n");
}
error: