From 6255ab89afea92ce0b2e911b4cbdd49c070ad890 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Thu, 13 Mar 2008 15:36:07 +0000 Subject: [PATCH] * src/modest-tny-msg.c: * Don't ignore signed multiparts (and then, now we can see multipart/signed messages). pmo-trunk-r4307 --- src/modest-tny-msg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modest-tny-msg.c b/src/modest-tny-msg.c index e521233..0fe400c 100644 --- a/src/modest-tny-msg.c +++ b/src/modest-tny-msg.c @@ -410,6 +410,7 @@ modest_tny_msg_find_body_part_from_mime_part (TnyMimePart *msg, gboolean want_ht header_content_type_lower = header_content_type?g_ascii_strdown (header_content_type, -1):NULL; if (header_content_type_lower && g_str_has_prefix (header_content_type_lower, "multipart/") && + !g_str_has_prefix (header_content_type_lower, "multipart/signed") && strstr (header_content_type_lower, "application/")) { g_free (header_content_type_lower); g_free (header_content_type); -- 1.7.9.5