From fd7b6edb31d810696b58b95c4ed82a9eefd38ab4 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Tue, 24 Jul 2001 21:57:59 +0000 Subject: Match the prefix for the "remember_passphrase" setting with where it's 2001-07-24 Jason Leach * mail-config.c (config_read): Match the prefix for the "remember_passphrase" setting with where it's being saved to (/Mail/Prompts), so the setting gets loaded correctly. Fixes #5351. svn path=/trunk/; revision=11360 --- mail/ChangeLog | 7 +++++++ mail/mail-config.c | 16 ++++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 8543220b7f..81f6db6a61 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-07-24 Jason Leach + + * mail-config.c (config_read): Match the prefix for the + "remember_passphrase" setting with where it's being saved to + (/Mail/Prompts), so the setting gets loaded correctly. Fixes + #5351. + 2001-07-24 Jeffrey Stedfast * mail-format.c (handle_text_plain): check_specials if this is an diff --git a/mail/mail-config.c b/mail/mail-config.c index 080b8e46e0..f7280b4883 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -521,7 +521,7 @@ config_read (void) "/Mail/PGP/type", CAMEL_PGP_TYPE_NONE, NULL); config->remember_pgp_passphrase = bonobo_config_get_boolean_with_default ( - config->db, "/Mail/PGP/remember_passphrase", TRUE, NULL); + config->db, "/Mail/Prompts/remember_passphrase", TRUE, NULL); /* HTTP images */ config->http_mode = bonobo_config_get_long_with_default (config->db, @@ -1267,20 +1267,20 @@ const MailConfigAccount * mail_config_get_default_account (void) { MailConfigAccount *retval; - + if (!config->accounts) return NULL; - + retval = g_slist_nth_data (config->accounts, config->default_account); - + /* Looks like we have no default, so make the first account the default */ if (retval == NULL) { mail_config_set_default_account_num (0); retval = config->accounts->data; } - + return retval; } @@ -1368,11 +1368,11 @@ void mail_config_set_default_account (const MailConfigAccount *account) { int position; - + position = g_slist_index (config->accounts, (void*)account); - + config->default_account = position; - + return; } -- cgit v1.2.3