aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorDan Vrátil <dvratil@redhat.com>2012-04-12 21:05:51 +0800
committerDan Vrátil <dvratil@redhat.com>2012-04-12 21:06:38 +0800
commit9e69152ab3fdd6fe2d74f656db8afc3fa6950816 (patch)
tree0410038fcba4d43ce3fcea1e8b7a11a0ef7e9e14 /mail
parent5768b8c03808c64e1f8b458c6ce0d37dff13aa26 (diff)
downloadgsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.tar
gsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.tar.gz
gsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.tar.bz2
gsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.tar.lz
gsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.tar.xz
gsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.tar.zst
gsoc2013-evolution-9e69152ab3fdd6fe2d74f656db8afc3fa6950816.zip
Bug #673228 - Fails to display attached image in attached email
Diffstat (limited to 'mail')
-rw-r--r--mail/em-format-html.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 020ca9e721..77e9c65bb3 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -1137,6 +1137,8 @@ efh_write_message_rfc822 (EMFormat *emf,
GList *puris;
GList *iter;
+ EMFormatWriterInfo msgInfo = *info;
+ msgInfo.mode = EM_FORMAT_WRITE_MODE_NORMAL;
/* Create a new fake list of PURIs which will contain only
* PURIs from this message. */
@@ -1159,7 +1161,7 @@ efh_write_message_rfc822 (EMFormat *emf,
};
- efh_write_message (emf, puris, stream, info, cancellable);
+ efh_write_message (emf, puris, stream, &msgInfo, cancellable);
g_list_free (puris);