From 5c8d34f45eff3ec9d20e218b6b047fb7717eb1ed Mon Sep 17 00:00:00 2001 From: Not Zed Date: Thu, 12 Aug 2004 06:53:28 +0000 Subject: fix for e_passwords api change, and handle reprompting as well. 2004-08-10 Not Zed * providers/groupwise/camel-gw-listener.c (get_addressbook_names_from_server): fix for e_passwords api change, and handle reprompting as well. svn path=/trunk/; revision=26879 --- camel/ChangeLog | 6 ++++++ camel/providers/groupwise/camel-gw-listener.c | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'camel') diff --git a/camel/ChangeLog b/camel/ChangeLog index aa2ed7dff6..c4c1bf546c 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2004-08-10 Not Zed + + * providers/groupwise/camel-gw-listener.c + (get_addressbook_names_from_server): fix for e_passwords api + change, and handle reprompting as well. + 2004-08-06 Jeffrey Stedfast * providers/imap4/camel-imap4-summary.c (untagged_fetch_all): Call diff --git a/camel/providers/groupwise/camel-gw-listener.c b/camel/providers/groupwise/camel-gw-listener.c index cbfbb233b6..927c7410f1 100644 --- a/camel/providers/groupwise/camel-gw-listener.c +++ b/camel/providers/groupwise/camel-gw-listener.c @@ -381,6 +381,7 @@ get_addressbook_names_from_server (char *source_url) char *uri; const char *use_ssl; const char *poa_address; + guint32 flags = E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET; url = camel_url_new (source_url, NULL); if (url == NULL) { @@ -406,8 +407,8 @@ get_addressbook_names_from_server (char *source_url) prompt = g_strdup_printf (_("%sEnter password for %s (user %s)"), failed_auth, poa_address, url->user); - password = e_passwords_ask_password (prompt, "Groupwise", key, prompt, TRUE, - E_PASSWORDS_REMEMBER_FOREVER, &remember, + password = e_passwords_ask_password (prompt, "Groupwise", key, prompt, + E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET, &remember, NULL); g_free (prompt); @@ -415,6 +416,7 @@ get_addressbook_names_from_server (char *source_url) break; cnc = e_gw_connection_new (uri, url->user, password); failed_auth = _("Failed to authenticate.\n"); + flags |= E_PASSWORDS_REPROMPT; } while (cnc == NULL); if (E_IS_GW_CONNECTION(cnc)) { -- cgit v1.2.3