aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-part.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-03-15 16:32:08 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-03-15 16:32:08 +0800
commit1043413b4066785b4ee0ba8c38a71c3567e89b8d (patch)
tree33dd9e68cbc55b4496e719c8665f022feaaa6844 /camel/camel-mime-part.c
parentf2a8b1d3388127f9040b17137273a27333361235 (diff)
downloadgsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.gz
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.bz2
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.lz
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.xz
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.tar.zst
gsoc2013-evolution-1043413b4066785b4ee0ba8c38a71c3567e89b8d.zip
set the mime-type field on the content the same way as
2004-03-15 Not Zed <NotZed@Ximian.com> * providers/imap/camel-imap-folder.c (get_content, get_message): set the mime-type field on the content the same way as construct_from_stream does. Bug #55472. * camel-mime-message.c (camel_mime_message_dump): utility function to dump message content to stdout. (camel_mime_message_init): default mime type to message/rfc822. * camel.c (camel_init): change camel verbose debug to be an int, a bitmask of debug options. svn path=/trunk/; revision=25064
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r--camel/camel-mime-part.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c
index e48ea4adc9..b87beca370 100644
--- a/camel/camel-mime-part.c
+++ b/camel/camel-mime-part.c
@@ -469,6 +469,7 @@ camel_mime_part_get_content_MD5 (CamelMimePart *mime_part)
void
camel_mime_part_set_content_location (CamelMimePart *mime_part, const char *location)
{
+ /* FIXME: this should perform content-location folding */
camel_medium_set_header (CAMEL_MEDIUM (mime_part), "Content-Location", location);
}
@@ -534,7 +535,6 @@ camel_mime_part_get_content_type (CamelMimePart *mime_part)
return ((CamelDataWrapper *) mime_part)->mime_type;
}
-
static void
set_content_object (CamelMedium *medium, CamelDataWrapper *content)
{