From 414ee2389f48a7ac5f7c982ae9a64fd7c7669f46 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 12 Jul 2002 02:57:32 +0000 Subject: Don't let any parts have a binary encoding. 2002-07-11 Jeffrey Stedfast * providers/smtp/camel-smtp-transport.c (smtp_data): Don't let any parts have a binary encoding. svn path=/trunk/; revision=17433 --- camel/ChangeLog | 5 +++++ camel/providers/smtp/camel-smtp-transport.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/camel/ChangeLog b/camel/ChangeLog index 5812a37b84..1b0055c5e0 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2002-07-11 Jeffrey Stedfast + + * providers/smtp/camel-smtp-transport.c (smtp_data): Don't let any + parts have a binary encoding. + 2002-07-11 Jeffrey Stedfast Fixes bug #27672 diff --git a/camel/providers/smtp/camel-smtp-transport.c b/camel/providers/smtp/camel-smtp-transport.c index d6def46609..1ef9ad041f 100644 --- a/camel/providers/smtp/camel-smtp-transport.c +++ b/camel/providers/smtp/camel-smtp-transport.c @@ -1138,7 +1138,7 @@ smtp_data (CamelSmtpTransport *transport, CamelMimeMessage *message, gboolean ha { /* now we can actually send what's important :p */ CamelBestencRequired required = CAMEL_BESTENC_GET_ENCODING; - CamelBestencEncoding enctype = CAMEL_BESTENC_BINARY; + CamelBestencEncoding enctype = CAMEL_BESTENC_8BIT; char *cmdbuf, *respbuf = NULL; CamelStreamFilter *filtered_stream; CamelMimeFilter *crlffilter; -- cgit