diff options
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/smtp/camel-smtp-transport.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 5812a37b84..1b0055c5e0 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,10 @@ 2002-07-11 Jeffrey Stedfast <fejj@ximian.com> + * providers/smtp/camel-smtp-transport.c (smtp_data): Don't let any + parts have a binary encoding. + +2002-07-11 Jeffrey Stedfast <fejj@ximian.com> + Fixes bug #27672 * camel-mime-filter-bestenc.c: Conditionally #include <config.h> 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; |