aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-05-07 05:43:40 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-05-07 05:43:40 +0800
commit287b864f7f4ae03249ad61609ad8b0b862e383a0 (patch)
tree302a849cc335af0217aa8d5fc6a0723847dab546 /camel/providers
parent77a58ee83cee5799021fedde99c641d52c59db28 (diff)
downloadgsoc2013-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/providers')
-rw-r--r--camel/providers/imap/camel-imap-folder.c4
1 files changed, 1 insertions, 3 deletions
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 ();