diff options
author | Not Zed <NotZed@Ximian.com> | 2003-01-14 15:15:27 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-01-14 15:15:27 +0800 |
commit | bb02dc25b40f4a695941ddd607959696c2b45604 (patch) | |
tree | 48b1293befcd073b8fa611726be020c2dea4b9e2 /camel/camel-mime-parser.c | |
parent | 0085381870b87b3f06f52109ec5d44e3e17a3862 (diff) | |
download | gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.tar gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.tar.gz gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.tar.bz2 gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.tar.lz gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.tar.xz gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.tar.zst gsoc2013-evolution-bb02dc25b40f4a695941ddd607959696c2b45604.zip |
If we have no content-type header, set it to text/plain explcitly, rather
2003-01-14 Not Zed <NotZed@Ximian.com>
* camel-mime-parser.c (folder_scan_step): If we have no
content-type header, set it to text/plain explcitly, rather than
NULL, because some code doesn't handle NULL.
svn path=/trunk/; revision=19438
Diffstat (limited to 'camel/camel-mime-parser.c')
-rw-r--r-- | camel/camel-mime-parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/camel-mime-parser.c b/camel/camel-mime-parser.c index 401d97b836..a9f7704cca 100644 --- a/camel/camel-mime-parser.c +++ b/camel/camel-mime-parser.c @@ -1693,6 +1693,8 @@ tail_recurse: d(printf("parent was multipart/digest, autoupgrading to message/rfc822?\n")); /* maybe we should do this too? header_raw_append_parse(&h->headers, "Content-Type: message/rfc822", -1);*/ + } else { + ct = header_content_type_decode("text/plain"); } } h->content_type = ct; |