diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-06-19 13:35:59 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-06-19 13:35:59 +0800 |
commit | 75705d57f328f4ad10ad47692024a5c4de89dbc7 (patch) | |
tree | d5820927f4c5e227abe4dea6933fb44c9180cff6 /camel/camel-sasl-plain.c | |
parent | 32ee2c5d283b49a0926806e5b4f82639660a19f2 (diff) | |
download | gsoc2013-evolution-75705d57f328f4ad10ad47692024a5c4de89dbc7.tar.gz gsoc2013-evolution-75705d57f328f4ad10ad47692024a5c4de89dbc7.tar.zst gsoc2013-evolution-75705d57f328f4ad10ad47692024a5c4de89dbc7.zip |
Don't bother trying to authenticate (and thus don't throw up an error
2002-06-19 Jeffrey Stedfast <fejj@ximian.com>
* providers/smtp/camel-smtp-transport.c (smtp_connect): Don't
bother trying to authenticate (and thus don't throw up an error
dialog) unless the server is an ESMTP server and supports
authentication.
* camel-sasl-plain.c: Change the user-friendly name to PLAIN, this
is what it should be. Not "Password" because user's immediately
think that they need authentication when they see "Password" even
if they don't need it at all.
svn path=/trunk/; revision=17232
Diffstat (limited to 'camel/camel-sasl-plain.c')
-rw-r--r-- | camel/camel-sasl-plain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-sasl-plain.c b/camel/camel-sasl-plain.c index 6965f32c4d..48d1fc9a01 100644 --- a/camel/camel-sasl-plain.c +++ b/camel/camel-sasl-plain.c @@ -29,7 +29,7 @@ #include "camel-service.h" CamelServiceAuthType camel_sasl_plain_authtype = { - N_("Password"), + N_("PLAIN"), N_("This option will connect to the server using a " "simple password."), |