From: Jose Dapena Paz Date: Thu, 13 Mar 2008 15:36:07 +0000 (+0000) Subject: * src/modest-tny-msg.c: X-Git-Tag: git_migration_finished~1561 X-Git-Url: http://vcs.maemo.org/git/?a=commitdiff_plain;h=6255ab89afea92ce0b2e911b4cbdd49c070ad890;p=modest * src/modest-tny-msg.c: * Don't ignore signed multiparts (and then, now we can see multipart/signed messages). pmo-trunk-r4307 --- 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);