From 1bcf8899a0758f5d5e0bc7ccec105699cb073072 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Thu, 12 Jul 2001 18:01:09 +0000 Subject: Should be saving the 'identity_html_signature' and 2001-07-12 Jason Leach * mail-config.c (config_read): Should be saving the 'identity_html_signature' and 'identity_has_html_signature" keys in the /Mail/Accounts prefix (with the rest of the per-account stuff, not on it's own) svn path=/trunk/; revision=11051 --- mail/ChangeLog | 7 +++++++ mail/mail-config.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 7e797c0873..63f4be97a7 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-07-12 Jason Leach + + * mail-config.c (config_read): Should be saving the + 'identity_html_signature' and 'identity_has_html_signature" keys + in the /Mail/Accounts prefix (with the rest of the per-account + stuff, not on it's own) + 2001-07-11 JP Rosevear * mail-display.c (get_embedded_for_component): no longer need to diff --git a/mail/mail-config.c b/mail/mail-config.c index 59679a532c..204ed35bd3 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -377,10 +377,10 @@ config_read (void) path = g_strdup_printf ("/Mail/Accounts/identity_signature_%d", i); id->signature = bonobo_config_get_string (config->db, path, NULL); g_free (path); - path = g_strdup_printf ("identity_html_signature_%d", i); + path = g_strdup_printf ("/Mail/Accounts/identity_html_signature_%d", i); id->html_signature = bonobo_config_get_string (config->db, path, NULL); g_free (path); - path = g_strdup_printf ("identity_has_html_signature_%d", i); + path = g_strdup_printf ("/Mail/Accounts/identity_has_html_signature_%d", i); id->has_html_signature = bonobo_config_get_boolean_with_default ( config->db, path, FALSE, NULL); g_free (path); -- cgit v1.2.3