From 670cd5a1d4d7a1daf02d8193ea75d991542c04a8 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Wed, 14 Jan 2009 17:30:18 +0000 Subject: ** Fix for bug #567687 2009-01-14 Milan Crha ** Fix for bug #567687 * prefer-plain.c: (org_gnome_prefer_plain_multipart_alternative): Force text/html part only when choosing between text/plain and it. svn path=/trunk/; revision=37071 --- plugins/prefer-plain/ChangeLog | 7 +++++++ plugins/prefer-plain/prefer-plain.c | 6 ++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/plugins/prefer-plain/ChangeLog b/plugins/prefer-plain/ChangeLog index 9fbb00082b..18e1b74300 100644 --- a/plugins/prefer-plain/ChangeLog +++ b/plugins/prefer-plain/ChangeLog @@ -1,3 +1,10 @@ +2009-01-14 Milan Crha + + ** Fix for bug #567687 + + * prefer-plain.c: (org_gnome_prefer_plain_multipart_alternative): + Force text/html part only when choosing between text/plain and it. + 2008-09-09 Milan Crha ** Fix for bug #551492 diff --git a/plugins/prefer-plain/prefer-plain.c b/plugins/prefer-plain/prefer-plain.c index 45cafa562a..ed4b6dc363 100644 --- a/plugins/prefer-plain/prefer-plain.c +++ b/plugins/prefer-plain/prefer-plain.c @@ -119,9 +119,7 @@ org_gnome_prefer_plain_multipart_alternative(void *ep, EMFormatHookTarget *t) /* Try to find text/html part even when not as last and force to show it. Old handler will show the last part of multipart/alternate, but if we can offer HTML, then offer it, regardless of position in multipart. - But do this only when have text/plain in a list, because otherwise it - can be something else (like outlooks meeting invites with only text/html - part and calendar part). + But do this when have only text/plain and text/html parts, not more. */ nparts = camel_multipart_get_number (mp); for (i = 0; i < nparts; i++) { @@ -148,7 +146,7 @@ org_gnome_prefer_plain_multipart_alternative(void *ep, EMFormatHookTarget *t) } } - if (display_part && have_plain) { + if (display_part && have_plain && nparts == 2) { g_string_append_printf (t->format->part_id, ".alternative.%d", displayid); em_format_part_as (t->format, t->stream, display_part, "text/html"); g_string_truncate (t->format->part_id, partidlen); -- cgit v1.2.3