diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-27 02:32:35 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-27 02:32:35 +0800 |
commit | 783b4b8a490e761bb01b6fd38a9f40bfd3332665 (patch) | |
tree | 658aadba64776ba9bf717fc8b50b703c6fb32dc2 /mail/mail-ops.c | |
parent | c9e2825702fe00219cfb215fd87e8388bf40522b (diff) | |
download | gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.tar gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.tar.gz gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.tar.bz2 gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.tar.lz gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.tar.xz gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.tar.zst gsoc2013-evolution-783b4b8a490e761bb01b6fd38a9f40bfd3332665.zip |
Don't create the tmp_mbox before calling movemail, because the external
* mail-ops.c (real_fetch_mail): Don't create the tmp_mbox before
calling movemail, because the external movemail requires it to not
exist. Contrariwise, delete it in the cleanup code if it's empty.
Update for camel_movemail interface change. Do the "No new
messages" dialog in the mbox case as well as the remote mail
issue.
svn path=/trunk/; revision=4356
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 3ffe34854f..b48ea8fb4b 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -141,6 +141,7 @@ real_fetch_mail (gpointer user_data) char *userrules, *systemrules; char *tmp_mbox = NULL, *source; guint handler_id = 0; + struct stat st; info = (rfm_t *) user_data; fb = info->fb; @@ -172,30 +173,20 @@ real_fetch_mail (gpointer user_data) * temporary store first. */ if (!strncmp (url, "mbox:", 5)) { - int tmpfd; - - tmpfd = open (tmp_mbox, O_RDWR | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR); - - if (tmpfd == -1) { - camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM, - "Couldn't create temporary " - "mbox: %s", g_strerror (errno)); - async_mail_exception_dialog ("Unable to move mail", ex, fb ); - goto cleanup; - } - close (tmpfd); - /* Skip over "mbox:" plus host part (if any) of url. */ source = url + 5; if (!strncmp (source, "//", 2)) source = strchr (source + 2, '/'); - switch (camel_movemail (source, tmp_mbox, ex)) { - case -1: - async_mail_exception_dialog ("Unable to move mail", ex, fb); - /* FALL THROUGH */ + camel_movemail (source, tmp_mbox, ex); + if (camel_exception_is_set (ex)) { + async_mail_exception_dialog ("Unable to move mail", + ex, fb); + goto cleanup; + } - case 0: + if (stat (tmp_mbox, &st) == -1 || st.st_size == 0) { + gnome_ok_dialog ("No new messages."); goto cleanup; } @@ -311,6 +302,8 @@ real_fetch_mail (gpointer user_data) gtk_signal_disconnect (GTK_OBJECT (dest_folder), handler_id); cleanup: + if (stat (tmp_mbox, &st) == 0 && st.st_size == 0) + unlink (tmp_mbox); /* FIXME: should use camel to do this */ g_free (tmp_mbox); if (filter) |