aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/em-format-html.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 7fdc495df2..4002957468 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2007-08-24 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #385414 by makuchaku (Mayank)
+
+ * em-format-html.c: (efh_format_source):
+ Use ...PRESERVE_8BIT rather than ...ESCAPE_8BIT for message source.
+
2007-08-24 Bharath Acharya <abharath@novell.com>
** Fix for bug #464338
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 3ff8358853..1ed80a63c6 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -2020,7 +2020,7 @@ static void efh_format_source(EMFormat *emf, CamelStream *stream, CamelMimePart
filtered_stream = camel_stream_filter_new_with_stream ((CamelStream *) stream);
html_filter = camel_mime_filter_tohtml_new (CAMEL_MIME_FILTER_TOHTML_CONVERT_NL
| CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES
- | CAMEL_MIME_FILTER_TOHTML_ESCAPE_8BIT, 0);
+ | CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT, 0);
camel_stream_filter_add(filtered_stream, html_filter);
camel_object_unref(html_filter);