diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-07-17 03:50:17 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-07-17 03:50:17 +0800 |
commit | 9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c (patch) | |
tree | 95e8d418ffb02dacf927a273b9486ef1e022720c /camel/providers/smtp/camel-smtp-transport.h | |
parent | 21bc75bf4529ed813e3513c7b88656ca9b904f62 (diff) | |
download | gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.tar gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.tar.gz gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.tar.bz2 gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.tar.lz gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.tar.xz gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.tar.zst gsoc2013-evolution-9f421a0b1cbed4440e623adf47ecf8a5c7aeaf0c.zip |
Make the standard AUTH format take priority over the AUTH= priority, since
2002-07-16 Jeffrey Stedfast <fejj@ximian.com>
* providers/smtp/camel-smtp-transport.c (smtp_helo): Make the
standard AUTH format take priority over the AUTH= priority, since
sometimes servers only list a subset of the supported authtypes in
the AUTH= response while they list all authtypes in the standard
AUTH response. Fixes "bug" #27841.
svn path=/trunk/; revision=17479
Diffstat (limited to 'camel/providers/smtp/camel-smtp-transport.h')
-rw-r--r-- | camel/providers/smtp/camel-smtp-transport.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/providers/smtp/camel-smtp-transport.h b/camel/providers/smtp/camel-smtp-transport.h index 907906c82b..0a57213c8d 100644 --- a/camel/providers/smtp/camel-smtp-transport.h +++ b/camel/providers/smtp/camel-smtp-transport.h @@ -53,6 +53,8 @@ extern "C" { #define CAMEL_SMTP_TRANSPORT_USE_SSL (CAMEL_SMTP_TRANSPORT_USE_SSL_ALWAYS | \ CAMEL_SMTP_TRANSPORT_USE_SSL_WHEN_POSSIBLE) +#define CAMEL_SMTP_TRANSPORT_AUTH_EQUAL (1 << 6) /* set if we are using authtypes from a broken AUTH= */ + typedef struct { CamelTransport parent_object; |