diff options
author | Lucian Langa <lucilanga@gnome.org> | 2008-05-31 01:57:40 +0800 |
---|---|---|
committer | Lucian Langa <lucilanga@src.gnome.org> | 2008-05-31 01:57:40 +0800 |
commit | 9025a500103a3781b39a6b25a63387bcb42049fe (patch) | |
tree | eff24a76e5e7dfadbe5faecc1063acfdf4b81429 /mail/em-format.c | |
parent | 66c4549eb809900021bd738be78775f00c35a3f1 (diff) | |
download | gsoc2013-evolution-9025a500103a3781b39a6b25a63387bcb42049fe.tar.gz gsoc2013-evolution-9025a500103a3781b39a6b25a63387bcb42049fe.tar.zst gsoc2013-evolution-9025a500103a3781b39a6b25a63387bcb42049fe.zip |
** Fix for bug #535670
2008-05-30 Lucian Langa <lucilanga@gnome.org>
** Fix for bug #535670
* em-format-quote.c: (type_builtin_table):
Add x-evolution/evolution-feed-rss as internal mime
for evolution-rss artiles.
* em-format.c: (em_format_is_attachment): prevent
evolution-rss articles being formatted as attachments.
svn path=/trunk/; revision=35559
Diffstat (limited to 'mail/em-format.c')
-rw-r--r-- | mail/em-format.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-format.c b/mail/em-format.c index ddf8693790..6f2a2125d2 100644 --- a/mail/em-format.c +++ b/mail/em-format.c @@ -957,6 +957,7 @@ int em_format_is_attachment(EMFormat *emf, CamelMimePart *part) || camel_content_type_is(dw->mime_type, "application", "pkcs7-mime") || camel_content_type_is(dw->mime_type, "application", "x-inlinepgp-signed") || camel_content_type_is(dw->mime_type, "application", "x-inlinepgp-encrypted") + || camel_content_type_is(dw->mime_type, "x-evolution", "evolution-rss-feed") || (camel_content_type_is (dw->mime_type, "text", "*") && camel_mime_part_get_filename(part) == NULL)); } |