aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorDan Winship <danw@helixcode.com>2000-09-15 21:28:43 +0800
committerDan Winship <danw@src.gnome.org>2000-09-15 21:28:43 +0800
commit88aa6978a3066a92e4f7c7bfecd7e254d2daaad1 (patch)
tree9bb1d53611d79572129bc11a42f80df229bef241 /mail/mail-ops.c
parent1cf3dc86f1b7da2c1019189f87a6c196ba6aea91 (diff)
downloadgsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.tar
gsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.tar.gz
gsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.tar.bz2
gsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.tar.lz
gsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.tar.xz
gsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.tar.zst
gsoc2013-evolution-88aa6978a3066a92e4f7c7bfecd7e254d2daaad1.zip
This bug was so much fun to fix the first time that I decided to
fix it again. 2000-07-11 Dan Winship <danw@helixcode.com> * 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=5445
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 8c6fb49210..ae06fe17ac 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -616,7 +616,8 @@ do_send_mail (gpointer in_data, gpointer op_data, CamelException *ex)
input->done_uid);
camel_folder_set_message_flags (input->done_folder,
input->done_uid,
- input->done_flags, ~set);
+ input->done_flags,
+ input->done_flags);
mail_tool_camel_lock_down ();
}