aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-09-24 08:34:01 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-09-24 08:34:01 +0800
commit3c632cd045d672318d94f75c4b4771007342a46c (patch)
treed96381e576dcdda8520075a57e857e2f37c21d85
parent1df3e6787e2c30adae410e1eda36907b578a4240 (diff)
downloadgsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar
gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar.gz
gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar.bz2
gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar.lz
gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar.xz
gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar.zst
gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.zip
Always cache POP and IMAP passwords, even if the user didn't tell us to.
2001-09-23 Jeffrey Stedfast <fejj@ximian.com> * mail-mt.c (pass_got): Always cache POP and IMAP passwords, even if the user didn't tell us to. Fixes bug #10569. svn path=/trunk/; revision=13089
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-mt.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 8835dacc94..b5ae53f23d 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-23 Jeffrey Stedfast <fejj@ximian.com>
+
+ * mail-mt.c (pass_got): Always cache POP and IMAP passwords, even
+ if the user didn't tell us to. Fixes bug #10569.
+
2001-09-21 <NotZed@Ximian.com>
* mail-mt.c (mail_msg_check_error): If we have an operation that
diff --git a/mail/mail-mt.c b/mail/mail-mt.c
index 3e9394c6a0..2324fa64ce 100644
--- a/mail/mail-mt.c
+++ b/mail/mail-mt.c
@@ -451,6 +451,11 @@ pass_got (char *string, void *data)
}
mail_config_service_set_save_passwd (service, remember);
+
+ /* set `remember' to TRUE because people don't want to have to
+ re-enter their passwords for this session even if they told
+ us not to cache their passwords in the dialog...*sigh* */
+ remember = TRUE;
}
if (m->cache)