diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-20 10:07:48 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-20 10:07:48 +0800 |
commit | 9053f8159f165d59d230f670f6615b907d88e789 (patch) | |
tree | 5be146d0a66f749ac833d7c2ac9a169d99bb2fb9 /mail/mail-ops.c | |
parent | 408266b22e32d386d8b2fd5b50117b1755d0e68b (diff) | |
download | gsoc2013-evolution-9053f8159f165d59d230f670f6615b907d88e789.tar.gz gsoc2013-evolution-9053f8159f165d59d230f670f6615b907d88e789.tar.zst gsoc2013-evolution-9053f8159f165d59d230f670f6615b907d88e789.zip |
** See #58693.
2004-05-20 Not Zed <NotZed@Ximian.com>
** See #58693.
* mail-send-recv.c (mail_autoreceive_setup): add bounds checking
so sloppy ui work wont break it again.
* mail-config.glade: put the minimum for autocheck back to 1
minute. Naughty jeff.
2004-05-19 Not Zed <NotZed@Ximian.com>
* mail-ops.c (send_queue_send): set seen when we set deleted. ?
#56549.
svn path=/trunk/; revision=26002
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 2b77601f6f..9e3febcd8d 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -680,7 +680,7 @@ send_queue_send(struct _mail_msg *mm) mail_send_message (message, m->destination, m->driver, &ex); if (!camel_exception_is_set (&ex)) { - camel_folder_set_message_flags (m->queue, send_uids->pdata[i], CAMEL_MESSAGE_DELETED, CAMEL_MESSAGE_DELETED); + camel_folder_set_message_flags (m->queue, send_uids->pdata[i], CAMEL_MESSAGE_DELETED|CAMEL_MESSAGE_SEEN, ~0); } else if (ex.id != CAMEL_EXCEPTION_USER_CANCEL) { /* merge exceptions into one */ if (camel_exception_is_set (&mm->ex)) |