diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-08-10 03:24:06 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-08-10 03:24:06 +0800 |
commit | bfa7f88ced7715b3cdabb038e6f57c9784d0a8eb (patch) | |
tree | d1ef8996e7195b24dfea1a6012836b1347e844f4 /mail/mail-config.c | |
parent | 6b0d359b25ee9a1a61c3c71a8babc9c894c30156 (diff) | |
download | gsoc2013-evolution-bfa7f88ced7715b3cdabb038e6f57c9784d0a8eb.tar.gz gsoc2013-evolution-bfa7f88ced7715b3cdabb038e6f57c9784d0a8eb.tar.zst gsoc2013-evolution-bfa7f88ced7715b3cdabb038e6f57c9784d0a8eb.zip |
Save the pgp and smime always-sign options.
2001-08-09 Jeffrey Stedfast <fejj@ximian.com>
* 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
Diffstat (limited to 'mail/mail-config.c')
-rw-r--r-- | mail/mail-config.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |