diff options
author | Milan Crha <mcrha@redhat.com> | 2008-06-13 14:36:22 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-06-13 14:36:22 +0800 |
commit | 5868f85aff119c14b15acecb22afae575b863a57 (patch) | |
tree | 56ca72d79e1111ff7dc939c9f88e180b51fbae75 /composer/e-msg-composer.c | |
parent | 00e55f86dfdec77459ca98e80bdc73aecad0bf84 (diff) | |
download | gsoc2013-evolution-5868f85aff119c14b15acecb22afae575b863a57.tar.gz gsoc2013-evolution-5868f85aff119c14b15acecb22afae575b863a57.tar.zst gsoc2013-evolution-5868f85aff119c14b15acecb22afae575b863a57.zip |
** Fix for bug #330597
2008-06-13 Milan Crha <mcrha@redhat.com>
** 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
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 6 |
1 files changed, 2 insertions, 4 deletions
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); } |