diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-09-24 08:34:01 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-09-24 08:34:01 +0800 |
commit | 3c632cd045d672318d94f75c4b4771007342a46c (patch) | |
tree | d96381e576dcdda8520075a57e857e2f37c21d85 /mail | |
parent | 1df3e6787e2c30adae410e1eda36907b578a4240 (diff) | |
download | gsoc2013-evolution-3c632cd045d672318d94f75c4b4771007342a46c.tar.gz 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
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-mt.c | 5 |
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) |