diff options
author | Dan Winship <danw@src.gnome.org> | 2001-03-27 13:30:41 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-03-27 13:30:41 +0800 |
commit | 0a12cd8b6ba0acaf48fb9d452136238e81948057 (patch) | |
tree | 4890300e4bf6e421909ac750313e51c25cd1daed /camel/providers/imap | |
parent | 6dd8aabeeee1945c4d96af5e045b75995db56517 (diff) | |
download | gsoc2013-evolution-0a12cd8b6ba0acaf48fb9d452136238e81948057.tar.gz gsoc2013-evolution-0a12cd8b6ba0acaf48fb9d452136238e81948057.tar.zst gsoc2013-evolution-0a12cd8b6ba0acaf48fb9d452136238e81948057.zip |
add an argument to say whether or not you want "PLAIN" in the list (so you
* camel-sasl.c (camel_sasl_authtype_list): add an argument to say
whether or not you want "PLAIN" in the list (so you don't end up
with "Password" twice in the config dialog).
* providers/imap/camel-imap-provider.c (camel_provider_module_init):
* providers/imap/camel-imap-store.c (query_auth_types): We don't
want PLAIN.
* providers/smtp/camel-smtp-provider.c (camel_provider_module_init):
* providers/smtp/camel-smtp-transport.c (query_auth_types): But we
do.
svn path=/trunk/; revision=8972
Diffstat (limited to 'camel/providers/imap')
-rw-r--r-- | camel/providers/imap/camel-imap-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/imap/camel-imap-provider.c b/camel/providers/imap/camel-imap-provider.c index 768c97901d..ce4f30487e 100644 --- a/camel/providers/imap/camel-imap-provider.c +++ b/camel/providers/imap/camel-imap-provider.c @@ -90,7 +90,7 @@ camel_provider_module_init (CamelSession *session) camel_imap_store_get_type (); imap_provider.service_cache = g_hash_table_new (imap_url_hash, imap_url_equal); imap_provider.authtypes = g_list_concat (camel_remote_store_authtype_list (), - camel_sasl_authtype_list ()); + camel_sasl_authtype_list (FALSE)); imap_provider.authtypes = g_list_prepend (imap_provider.authtypes, &camel_imap_password_authtype); diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index 7f303e51fb..d9466e120e 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -321,7 +321,7 @@ query_auth_types (CamelService *service, CamelException *ex) if (camel_exception_is_set (ex)) return types; - sasl_types = camel_sasl_authtype_list (); + sasl_types = camel_sasl_authtype_list (FALSE); for (t = sasl_types; t; t = next) { authtype = t->data; next = t->next; |