diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-07-12 10:57:32 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-07-12 10:57:32 +0800 |
commit | 414ee2389f48a7ac5f7c982ae9a64fd7c7669f46 (patch) | |
tree | afd768094fdfc7c661bd65754e7c4826b32649d9 /camel/providers/smtp | |
parent | f91e89186851dc936378b1186b91a2c9c56cffc5 (diff) | |
download | gsoc2013-evolution-414ee2389f48a7ac5f7c982ae9a64fd7c7669f46.tar.gz gsoc2013-evolution-414ee2389f48a7ac5f7c982ae9a64fd7c7669f46.tar.zst gsoc2013-evolution-414ee2389f48a7ac5f7c982ae9a64fd7c7669f46.zip |
Don't let any parts have a binary encoding.
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.
svn path=/trunk/; revision=17433
Diffstat (limited to 'camel/providers/smtp')
-rw-r--r-- | camel/providers/smtp/camel-smtp-transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |