aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-09-10 03:33:36 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-09-10 03:33:36 +0800
commitce49a43a527ee533a9c697b36760d8bfa481e0aa (patch)
tree8451cf4f7f214587140e54411c572413008568fb /mail/mail-ops.c
parentb03c714acf2602fe717a7088c714dd20489aa473 (diff)
downloadgsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.tar
gsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.tar.gz
gsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.tar.bz2
gsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.tar.lz
gsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.tar.xz
gsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.tar.zst
gsoc2013-evolution-ce49a43a527ee533a9c697b36760d8bfa481e0aa.zip
Use the CamelUIDCache so that we only retrieve *new* messages and also
2000-09-09 Jeffrey Stedfast <fejj@helixcode.com> * mail-ops.c (do_fetch_mail): Use the CamelUIDCache so that we only retrieve *new* messages and also send notes to the status bar telling it which message we're downloading so that Ettore can sleep at night ;-) svn path=/trunk/; revision=5290
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c28
1 files changed, 27 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 271fc578bb..a0b4b00437 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -26,6 +26,7 @@
#include <config.h>
#include <gnome.h>
+#include <ctype.h>
#include "mail.h"
#include "mail-threads.h"
#include "mail-tools.h"
@@ -138,11 +139,13 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex)
if (camel_folder_get_message_count (folder) == 0) {
data->empty = TRUE;
} else {
+ CamelUIDCache *cache;
gchar *userrules;
gchar *systemrules;
FilterContext *fc;
FilterDriver *filter;
- GPtrArray *uids;
+ GPtrArray *uids, *new_uids;
+ char *url, *p, *filename;
int i;
userrules = g_strdup_printf ("%s/filters.xml", evolution_dir);
@@ -161,11 +164,34 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex)
camel_folder_freeze (input->destination);
uids = camel_folder_get_uids (folder);
+
+ /* get the mail source's uid cache file */
+ url = camel_url_to_string (CAMEL_SERVICE (folder->parent_store)->url, FALSE);
+ for (p = url; *p; p++) {
+ if (!isascii ((unsigned char)*p) || strchr (" /'\"`&();|<>${}!", *p))
+ *p = '_';
+ }
+
+ filename = g_strdup_printf ("%s/config/cache-%s", evolution_dir, url);
+ g_free (url);
+
+ cache = camel_uid_cache_new (filename);
+
+ if (cache) {
+ /* determine the new uids */
+ new_uids = camel_uid_cache_get_new_uids (cache, uids);
+ camel_folder_free_uids (folder, uids);
+ uids = new_uids;
+ }
+
+ /* get/filter the new messages */
for (i = 0; i < uids->len; i++) {
CamelMimeMessage *message;
CamelMessageInfo *info;
gboolean free_info;
+ mail_op_set_message ("Retrieving message %d of %d", i + 1, uids->len);
+
message = camel_folder_get_message (folder, uids->pdata[i], ex);
if (camel_exception_is_set (ex))
continue;