aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-account-setup/camel-gw-listener.c
diff options
context:
space:
mode:
authorParthasarathi Susarla <saps@src.gnome.org>2005-09-16 15:41:28 +0800
committerParthasarathi Susarla <saps@src.gnome.org>2005-09-16 15:41:28 +0800
commit74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd (patch)
tree55fc3048e6c4463b89adf2a038f198a7387a1269 /plugins/groupwise-account-setup/camel-gw-listener.c
parentfa6ebe68ac78b583dddc4255e065548fab0d13b1 (diff)
downloadgsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.tar
gsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.tar.gz
gsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.tar.bz2
gsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.tar.lz
gsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.tar.xz
gsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.tar.zst
gsoc2013-evolution-74d9e63af97aea11e7d0c8fc9cb1b31f1ff882dd.zip
*** empty log message ***
svn path=/trunk/; revision=30352
Diffstat (limited to 'plugins/groupwise-account-setup/camel-gw-listener.c')
-rw-r--r--plugins/groupwise-account-setup/camel-gw-listener.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c
index e2d3784f88..8aa5daf1e4 100644
--- a/plugins/groupwise-account-setup/camel-gw-listener.c
+++ b/plugins/groupwise-account-setup/camel-gw-listener.c
@@ -428,13 +428,13 @@ get_addressbook_names_from_server (char *source_url)
const char *soap_port;
CamelURL *url;
gboolean remember;
- char *failed_auth;
+ char *failed_auth = NULL;
char *prompt;
char *password_prompt;
char *uri;
const char *use_ssl;
const char *poa_address;
- guint32 flags = E_PASSWORDS_REMEMBER_FOREVER;
+ guint32 flags = E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET;
url = camel_url_new (source_url, NULL);
if (url == NULL) {
@@ -456,17 +456,22 @@ get_addressbook_names_from_server (char *source_url)
else
uri = g_strdup_printf ("http://%s:%s/soap", poa_address, soap_port);
- failed_auth = "";
cnc = NULL;
do {
+ /*we have to uncache the password before prompting again*/
+ if (failed_auth) {
+ e_passwords_forget_password ("Groupwise", key);
+ password = NULL;
+ }
+
password = e_passwords_get_password ("Groupwise", key);
if (!password) {
password_prompt = g_strdup_printf (_("Enter password for %s (user %s)"),
poa_address, url->user);
- prompt = g_strconcat (failed_auth, password_prompt, NULL);
+ prompt = g_strconcat (failed_auth ? failed_auth : "", password_prompt, NULL);
g_free (password_prompt);
password = e_passwords_ask_password (prompt, "Groupwise", key, prompt,
- E_PASSWORDS_REMEMBER_FOREVER|E_PASSWORDS_SECRET, &remember,
+ flags, &remember,
NULL);
g_free (prompt);
@@ -494,6 +499,8 @@ get_addressbook_names_from_server (char *source_url)
}
+ /*FIXME: This error message should be relocated to addressbook and should reflect
+ * that it actually failed to get the addressbooks*/
e_error_run (NULL, "mail:gw-accountsetup-error", poa_address, NULL);
return NULL;
}