diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-06-09 04:26:13 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-06-09 04:26:13 +0800 |
commit | da6c1c4d2ef41c60130e4de31160ee8107227588 (patch) | |
tree | e85c0f11b9b5029281a341a1bdbf21d3593d271c /mail/mail-callbacks.c | |
parent | 1cb2bd29bec3bfb81e06c0f9fc11e4ae3020757a (diff) | |
download | gsoc2013-evolution-da6c1c4d2ef41c60130e4de31160ee8107227588.tar.gz gsoc2013-evolution-da6c1c4d2ef41c60130e4de31160ee8107227588.tar.zst gsoc2013-evolution-da6c1c4d2ef41c60130e4de31160ee8107227588.zip |
Reattach X-Evolution-Account information to the message after sending it.
2001-06-08 Jon Trowbridge <trow@ximian.com>
* mail-ops.c (mail_send_message): Reattach X-Evolution-Account
information to the message after sending it. This way it can
be used to set the identity properly if we later Resend the
message.
svn path=/trunk/; revision=10162
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index e998d5e428..448706bf41 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -984,8 +984,9 @@ do_edit_messages(CamelFolder *folder, GPtrArray *uids, GPtrArray *messages, void for (i = 0; i < messages->len; i++) { EMsgComposer *composer; - + composer = e_msg_composer_new_with_message (messages->pdata[i]); + if (composer) { gtk_signal_connect (GTK_OBJECT (composer), "send", composer_send_cb, NULL); |