diff options
Diffstat (limited to 'camel/camel-sasl-plain.c')
-rw-r--r-- | camel/camel-sasl-plain.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/camel/camel-sasl-plain.c b/camel/camel-sasl-plain.c index aea5199b68..958a30e962 100644 --- a/camel/camel-sasl-plain.c +++ b/camel/camel-sasl-plain.c @@ -30,11 +30,23 @@ CamelServiceAuthType camel_sasl_plain_authtype = { N_("Password"), - + N_("This option will connect to the server using a " "simple password."), - + "PLAIN", + TRUE, + FALSE +}; + +CamelServiceAuthType camel_sasl_login_authtype = { + N_("NT Login"), + + N_("This option will connect to the server using a " + "simple password."), + + "LOGIN", + TRUE, TRUE }; |