diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-07-10 05:35:11 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-10 05:35:11 +0800 |
commit | 29315f8157b6cab9b8876eeea92356241970a536 (patch) | |
tree | e67e7210964457abc89897ca1dd826616f511c6b /mail/mail-accounts.h | |
parent | ebd5da4c959c595723d3d4d48cf8ef0978162177 (diff) | |
download | gsoc2013-evolution-29315f8157b6cab9b8876eeea92356241970a536.tar.gz gsoc2013-evolution-29315f8157b6cab9b8876eeea92356241970a536.tar.zst gsoc2013-evolution-29315f8157b6cab9b8876eeea92356241970a536.zip |
Update to pass in the `remember' argument when creating a new pgp context.
2001-07-09 Jeffrey Stedfast <fejj@ximian.com>
* mail-crypto.c (mail_crypto_pgp_mime_part_sign): Update to pass
in the `remember' argument when creating a new pgp context.
(mail_crypto_pgp_mime_part_verify): Same.
(mail_crypto_pgp_mime_part_encrypt): And here...
(mail_crypto_pgp_mime_part_decrypt): And finally here.
* mail-config.c (mail_config_get_remember_pgp_passphrase): New.
(mail_config_set_remember_pgp_passphrase): New.
(config_read): Read in the "remember passphrase" value.
(mail_config_write_on_exit): Save the remember-passphrase value.
* mail-accounts.c (construct): Allow the user to set "Remember PGP
Passphrase".
(remember_pgp_passphrase_toggled): Set the toggle state.
svn path=/trunk/; revision=10933
Diffstat (limited to 'mail/mail-accounts.h')
-rw-r--r-- | mail/mail-accounts.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/mail-accounts.h b/mail/mail-accounts.h index f0ece925d9..765ab399ec 100644 --- a/mail/mail-accounts.h +++ b/mail/mail-accounts.h @@ -54,7 +54,7 @@ struct _MailAccountsDialog { const GSList *accounts; gint accounts_row; - + /* Accounts page */ GtkCList *mail_accounts; GtkButton *mail_add; @@ -65,7 +65,7 @@ struct _MailAccountsDialog { const GSList *news; gint news_row; - + /* News page */ GtkCList *news_accounts; GtkButton *news_add; @@ -77,7 +77,7 @@ struct _MailAccountsDialog { GnomeColorPicker *citation_color; GtkSpinButton *timeout; GtkToggleButton *images_always, *images_sometimes, *images_never; - + /* Composer page */ GtkToggleButton *send_html; GtkOptionMenu *forward_style; @@ -89,6 +89,7 @@ struct _MailAccountsDialog { /* PGP page */ GnomeFileEntry *pgp_path; + GtkToggleButton *remember_passwd; }; typedef struct _MailAccountsDialog MailAccountsDialog; |