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/mail-mt.c | |
parent | 1df3e6787e2c30adae410e1eda36907b578a4240 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 5 |
1 files changed, 5 insertions, 0 deletions
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) |