diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-05-07 05:43:40 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-05-07 05:43:40 +0800 |
commit | 287b864f7f4ae03249ad61609ad8b0b862e383a0 (patch) | |
tree | 302a849cc335af0217aa8d5fc6a0723847dab546 /camel | |
parent | 77a58ee83cee5799021fedde99c641d52c59db28 (diff) | |
download | gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.tar gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.tar.gz gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.tar.bz2 gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.tar.lz gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.tar.xz gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.tar.zst gsoc2013-evolution-287b864f7f4ae03249ad61609ad8b0b862e383a0.zip |
Call camel_mime_message_encode_8bit_parts() which fixes bug #10885.
2002-05-06 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-folder.c (do_append): Call
camel_mime_message_encode_8bit_parts() which fixes bug #10885.
svn path=/trunk/; revision=16698
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 3 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 4f86b6f9aa..1d31a6ce16 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2002-05-06 Jeffrey Stedfast <fejj@ximian.com> + * providers/imap/camel-imap-folder.c (do_append): Call + camel_mime_message_encode_8bit_parts() which fixes bug #10885. + * camel-tcp-stream-raw.c (socket_connect): Don't bother with counting down the timeout. diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 811533d25a..b654919e09 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -1001,9 +1001,7 @@ do_append (CamelFolder *folder, CamelMimeMessage *message, flagstr = NULL; /* encode any 8bit parts so we avoid sending embedded nul-chars and such */ - /* commented out because it might change the encoding on - signed parts which'd break stuff */ - /*camel_mime_message_encode_8bit_parts (message);*/ + camel_mime_message_encode_8bit_parts (message); /* FIXME: We could avoid this if we knew how big the message was. */ memstream = camel_stream_mem_new (); |