From 16b174cf0eebcb216316674966a46ea29a3bb15b Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 21 Jan 2002 21:58:07 +0000 Subject: If the first "token" in the body is "", then treat this as a 2002-01-21 Jeffrey Stedfast * mail-format.c (handle_text_plain): If the first "token" in the body is "", then treat this as a text/html part rather than a text/plain part. Fixes bug #16817. * component-factory.c (destination_folder_handle_drop): Removed some unused variables. svn path=/trunk/; revision=15420 --- mail/mail-format.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'mail/mail-format.c') diff --git a/mail/mail-format.c b/mail/mail-format.c index 28e5359345..ea200f5f30 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1191,6 +1191,15 @@ handle_text_plain (CamelMimePart *part, const char *mime_type, text = bytes->data; g_byte_array_free (bytes, FALSE); + /* Check to see if this is a broken text/html part with content-type text/plain */ + start = text; + while (isspace ((unsigned) *start)) + start++; + if (!g_strncasecmp (start, "", 6)) { + g_free (text); + return handle_text_html (part, "text/html", md, html, stream); + } + /* Check for RFC 2646 flowed text. */ type = camel_mime_part_get_content_type (part); format = header_content_type_param (type, "format"); -- cgit v1.2.3