From 5868f85aff119c14b15acecb22afae575b863a57 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 13 Jun 2008 06:36:22 +0000 Subject: ** Fix for bug #330597 2008-06-13 Milan Crha ** Fix for bug #330597 * e-msg-composer.c: (add_attachments_handle_mime_part): Add all text/* parts which has a filename set and also attach all submessages. svn path=/trunk/; revision=35634 --- composer/e-msg-composer.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'composer/e-msg-composer.c') diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 2dbfcc92d4..cc92fdf8b7 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -3005,12 +3005,10 @@ add_attachments_handle_mime_part (EMsgComposer *composer, camel_mime_part_get_content_location (mime_part)) e_msg_composer_add_inline_image_from_mime_part ( composer, mime_part); - } else if (CAMEL_IS_MIME_MESSAGE (wrapper)) { - /* do nothing */ } else if (related && camel_content_type_is (content_type, "image", "*")) { e_msg_composer_add_inline_image_from_mime_part (composer, mime_part); - } else if (camel_content_type_is (content_type, "text", "*")) { - /* do nothing */ + } else if (camel_content_type_is (content_type, "text", "*") && camel_mime_part_get_filename (mime_part) == NULL) { + /* do nothing if this is a text/anything without filename, otherwise attach it too */ } else { e_msg_composer_attach (composer, mime_part); } -- cgit v1.2.3