aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-format.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r--mail/mail-format.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c
index 3af17025de..5f04ecb231 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -170,12 +170,16 @@ mail_format_mime_message (CamelMimeMessage *mime_message, MailDisplay *md)
void
mail_format_raw_message (CamelMimeMessage *mime_message, MailDisplay *md)
{
- gchar *text;
-
+ char *text, *html;
+
g_return_if_fail (CAMEL_IS_MIME_MESSAGE (mime_message));
text = get_data_wrapper_text (CAMEL_DATA_WRAPPER (mime_message));
- mail_text_write (md->html, md->stream, "%s", text ? text : "");
+ html = e_text_to_html (text, E_TEXT_TO_HTML_CONVERT_NL | E_TEXT_TO_HTML_CONVERT_SPACES);
+ gtk_html_write (md->html, md->stream, "<tt>", 4);
+ gtk_html_write (md->html, md->stream, html, strlen (html));
+ gtk_html_write (md->html, md->stream, "</tt>", 5);
+ g_free (html);
g_free (text);
}