diff options
author | Sarfraaz Ahmed <asarfraaz@novell.com> | 2005-09-28 22:30:54 +0800 |
---|---|---|
committer | Ahmed Sarfraaz <sarfraaz@src.gnome.org> | 2005-09-28 22:30:54 +0800 |
commit | 5c7e94906345581fdd99c461f0c23cab3b8ebf4b (patch) | |
tree | b70b1d5bc8b8d9b966cc84ec2d4d840640c6cbbd /plugins/exchange-operations/exchange-account-setup.c | |
parent | ebef4e5ed565ae236aed1e644bd62fb475e928f8 (diff) | |
download | gsoc2013-evolution-5c7e94906345581fdd99c461f0c23cab3b8ebf4b.tar.gz gsoc2013-evolution-5c7e94906345581fdd99c461f0c23cab3b8ebf4b.tar.zst gsoc2013-evolution-5c7e94906345581fdd99c461f0c23cab3b8ebf4b.zip |
Propogate the authentication mechanism to the backend. exchange-calendar.c
2005-09-28 Sarfraaz Ahmed <asarfraaz@novell.com>
* exchange-account-setup.c (owa_authenticate_user) : Propogate the
authentication mechanism to the backend.
* exchange-calendar.c
* exchange-contacts.c
* exchange-folder.c : Parse the new account uri.
svn path=/trunk/; revision=30413
Diffstat (limited to 'plugins/exchange-operations/exchange-account-setup.c')
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index e21da51c72..4b291f73c7 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -464,6 +464,10 @@ owa_authenticate_user(GtkWidget *button, EConfig *config) which should then be shown using e-error */ owa_url = camel_url_get_param (url, "owa_url"); + if (camel_url_get_param (url, "authmech")) + exchange_params->is_ntlm = TRUE; + else + exchange_params->is_ntlm = FALSE; valid = e2k_validate_user (owa_url, url->user, exchange_params, &remember_password, &result); |