aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--camel/ChangeLog3
-rw-r--r--camel/providers/imap/camel-imap-folder.c4
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 ();