From bfa7f88ced7715b3cdabb038e6f57c9784d0a8eb Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 9 Aug 2001 19:24:06 +0000 Subject: Save the pgp and smime always-sign options. 2001-08-09 Jeffrey Stedfast * mail-account-gui.c (mail_account_gui_save): Save the pgp and smime always-sign options. * mail-config.c (account_copy): Copy the always-sign options over too. svn path=/trunk/; revision=11841 --- mail/mail-config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mail/mail-config.c') diff --git a/mail/mail-config.c b/mail/mail-config.c index 7002a20584..48507f36b0 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -191,9 +191,11 @@ account_copy (const MailConfigAccount *account) new->pgp_key = g_strdup (account->pgp_key); new->pgp_encrypt_to_self = account->pgp_encrypt_to_self; + new->pgp_always_sign = account->pgp_always_sign; new->smime_key = g_strdup (account->smime_key); new->smime_encrypt_to_self = account->smime_encrypt_to_self; + new->smime_always_sign = account->smime_always_sign; return new; } -- cgit