From cd2628ec5b41248af0d3709fb6af6dfa2aab36fb Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 9 Feb 2001 00:03:19 +0000 Subject: Properly do defaults here. (mail_config_write): Removed some of the 2001-02-08 Jeffrey Stedfast * mail-config.c (config_read): Properly do defaults here. (mail_config_write): Removed some of the settings being saved here. (mail_config_write_on_exit): Save those settings here instead. svn path=/trunk/; revision=8128 --- mail/ChangeLog | 7 +++++ mail/mail-config.c | 91 ++++++++++++++++++++++++++++++------------------------ 2 files changed, 58 insertions(+), 40 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 71ebcc3a15..b132ced3db 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-02-08 Jeffrey Stedfast + + * mail-config.c (config_read): Properly do defaults here. + (mail_config_write): Removed some of the settings being saved + here. + (mail_config_write_on_exit): Save those settings here instead. + 2001-02-08 Jeffrey Stedfast * mail-display.c (on_object_requested): Cast the CamelMedium to a diff --git a/mail/mail-config.c b/mail/mail-config.c index 3076ebacef..be8b8a7b6c 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -203,6 +203,7 @@ config_read (void) gchar *str; gint len, i; gboolean have_default = FALSE; + gboolean def; mail_config_clear (); @@ -263,10 +264,14 @@ config_read (void) source->keep_on_server = gnome_config_get_bool (path); g_free (path); path = g_strdup_printf ("source_auto_check_%d", i); - source->auto_check = gnome_config_get_bool (path); + source->auto_check = gnome_config_get_bool_with_default (path, &def); + if (def) + source->auto_check = FALSE; g_free (path); path = g_strdup_printf ("source_auto_check_time_%d", i); - source->auto_check_time = gnome_config_get_int (path); + source->auto_check_time = gnome_config_get_int_with_default (path, &def); + if (source->auto_check && def) + source->auto_check = FALSE; g_free (path); path = g_strdup_printf ("source_save_passwd_%d", i); source->save_passwd = gnome_config_get_bool (path); @@ -322,31 +327,41 @@ config_read (void) /* Format */ str = g_strdup_printf ("=%s/config/Mail=/Format/send_html", evolution_dir); - config->send_html = gnome_config_get_bool (str); + config->send_html = gnome_config_get_bool_with_default (str, &def); + if (def) + config->send_html = FALSE; g_free (str); /* Mark as seen timeout */ - str = g_strdup_printf ("=%s/config/Mail=/Display/seen_timeout=1500", + str = g_strdup_printf ("=%s/config/Mail=/Display/seen_timeout", evolution_dir); - config->seen_timeout = gnome_config_get_int (str); + config->seen_timeout = gnome_config_get_int_with_default (str, &def); + if (def) + config->seen_timeout = 1500; g_free (str); /* Show Messages Threaded */ str = g_strdup_printf ("=%s/config/Mail=/Display/thread_list", evolution_dir); - config->thread_list = gnome_config_get_bool (str); + config->thread_list = gnome_config_get_bool_with_default (str, &def); + if (def) + config->thread_list = FALSE; g_free (str); /* Size of vpaned in mail view */ - str = g_strdup_printf ("=%s/config/Mail=/Display/paned_size=200", + str = g_strdup_printf ("=%s/config/Mail=/Display/paned_size", evolution_dir); - config->paned_size = gnome_config_get_int (str); + config->paned_size = gnome_config_get_int_with_default (str, &def); + if (def) + config->paned_size = 200; g_free (str); /* Empty Subject */ - str = g_strdup_printf ("=%s/config/Mail=/Prompts/empty_subject=true", + str = g_strdup_printf ("=%s/config/Mail=/Prompts/empty_subject", evolution_dir); - config->prompt_empty_subject = gnome_config_get_bool (str); + config->prompt_empty_subject = gnome_config_get_bool_with_default (str, &def); + if (def) + config->prompt_empty_subject = TRUE; g_free (str); /* PGP/GPG */ @@ -354,9 +369,11 @@ config_read (void) evolution_dir); config->pgp_path = gnome_config_get_string (str); g_free (str); - str = g_strdup_printf ("=%s/config/Mail=/PGP/type=0", + str = g_strdup_printf ("=%s/config/Mail=/PGP/type", evolution_dir); - config->pgp_type = gnome_config_get_int (str); + config->pgp_type = gnome_config_get_int_with_default (str, &def); + if (def) + config->pgp_type = 0; g_free (str); gnome_config_sync (); @@ -449,6 +466,28 @@ mail_config_write (void) } gnome_config_pop_prefix (); + gnome_config_sync (); +} + +void +mail_config_write_on_exit (void) +{ + gchar *str; + GSList *sources; + MailConfigService *s; + + /* Show Messages Threaded */ + str = g_strdup_printf ("=%s/config/Mail=/Display/thread_list", + evolution_dir); + gnome_config_set_bool (str, config->thread_list); + g_free (str); + + /* Size of vpaned in mail view */ + str = g_strdup_printf ("=%s/config/Mail=/Display/paned_size", + evolution_dir); + gnome_config_set_int (str, config->paned_size); + g_free (str); + /* Mark as seen timeout */ str = g_strdup_printf ("=%s/config/Mail=/Display/seen_timeout", evolution_dir); @@ -477,34 +516,6 @@ mail_config_write (void) gnome_config_set_int (str, config->pgp_type); g_free (str); - gnome_config_sync (); -} - -void -mail_config_write_on_exit (void) -{ - gchar *str; - GSList *sources; - MailConfigService *s; - - /* Show Messages Threaded */ - str = g_strdup_printf ("=%s/config/Mail=/Display/thread_list", - evolution_dir); - gnome_config_set_bool (str, config->thread_list); - g_free (str); - - /* Mark as seen timeout */ - str = g_strdup_printf ("=%s/config/Mail=/Display/seen_timeout", - evolution_dir); - gnome_config_set_bool (str, config->seen_timeout); - g_free (str); - - /* Size of vpaned in mail view */ - str = g_strdup_printf ("=%s/config/Mail=/Display/paned_size", - evolution_dir); - gnome_config_set_int (str, config->paned_size); - g_free (str); - /* Passwords */ gnome_config_private_clean_section ("/Evolution/Passwords"); sources = mail_config_get_sources (); -- cgit v1.2.3