aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-12 04:24:24 +0800
committerDan Winship <danw@src.gnome.org>2000-07-12 04:24:24 +0800
commit7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c (patch)
tree97d3e85eef0b9c30e50402c5b96741b726b66118 /mail/mail-ops.c
parent3d319ce9ef8862ec4245ab58946ff8ff66c00578 (diff)
downloadgsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.tar
gsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.tar.gz
gsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.tar.bz2
gsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.tar.lz
gsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.tar.xz
gsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.tar.zst
gsoc2013-evolution-7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c.zip
Set the post_send_data flag rather than toggling it. (Maybe we'll need
* mail-ops.c (real_send_mail): Set the post_send_data flag rather than toggling it. (Maybe we'll need more control over it later, but for now, the only flag we set is "replied", and we want that set, not toggled.) svn path=/trunk/; revision=4096
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index e8e7bf97c7..e961d794f2 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -445,12 +445,9 @@ real_send_mail (gpointer user_data)
info->ok = FALSE;
} else {
if (psd) {
- guint32 set;
-
- set = camel_folder_get_message_flags (psd->folder,
- psd->uid, ex);
camel_folder_set_message_flags (psd->folder, psd->uid,
- psd->flags, ~set, ex);
+ psd->flags, psd->flags,
+ ex);
}
info->ok = TRUE;