From 25efa799eebf0b057a91d05a36ffadb9eeb5b9db Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 9 Jul 2001 21:39:38 +0000 Subject: Update to pass in the `remember' argument when creating a new pgp context. 2001-07-09 Jeffrey Stedfast * mail-format.c (decode_pgp): Update to pass in the `remember' argument when creating a new pgp context. (try_inline_pgp_sig): And here... * 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=10934 --- mail/ChangeLog | 4 ++++ mail/mail-crypto.c | 8 ++++---- mail/mail-format.c | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 17dab48fb2..6d9cec5276 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,9 @@ 2001-07-09 Jeffrey Stedfast + * mail-format.c (decode_pgp): Update to pass in the `remember' + argument when creating a new pgp context. + (try_inline_pgp_sig): And here... + * 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. diff --git a/mail/mail-crypto.c b/mail/mail-crypto.c index f7e003f07c..2028e5bf28 100644 --- a/mail/mail-crypto.c +++ b/mail/mail-crypto.c @@ -50,7 +50,7 @@ mail_crypto_pgp_mime_part_sign (CamelMimePart **mime_part, const char *userid, C context = camel_pgp_context_new (session, mail_config_get_pgp_type (), mail_config_get_pgp_path (), - mail_config_get_pgp_remember_pgp_passphrase ()); + mail_config_get_remember_pgp_passphrase ()); if (context) { camel_pgp_mime_part_sign (context, mime_part, userid, hash, ex); @@ -76,7 +76,7 @@ mail_crypto_pgp_mime_part_verify (CamelMimePart *mime_part, CamelException *ex) context = camel_pgp_context_new (session, mail_config_get_pgp_type (), mail_config_get_pgp_path (), - mail_config_get_pgp_remember_pgp_passphrase ()); + mail_config_get_remember_pgp_passphrase ()); if (context) { valid = camel_pgp_mime_part_verify (context, mime_part, ex); @@ -106,7 +106,7 @@ mail_crypto_pgp_mime_part_encrypt (CamelMimePart **mime_part, GPtrArray *recipie context = camel_pgp_context_new (session, mail_config_get_pgp_type (), mail_config_get_pgp_path (), - mail_config_get_pgp_remember_pgp_passphrase ()); + mail_config_get_remember_pgp_passphrase ()); if (context) { camel_pgp_mime_part_encrypt (context, mime_part, recipients, ex); @@ -132,7 +132,7 @@ mail_crypto_pgp_mime_part_decrypt (CamelMimePart *mime_part, CamelException *ex) context = camel_pgp_context_new (session, mail_config_get_pgp_type (), mail_config_get_pgp_path (), - mail_config_get_pgp_remember_pgp_passphrase ()); + mail_config_get_remember_pgp_passphrase ()); if (context) { part = camel_pgp_mime_part_decrypt (context, mime_part, ex); diff --git a/mail/mail-format.c b/mail/mail-format.c index e9291e7bf5..7dcbc978cb 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1094,7 +1094,8 @@ decode_pgp (CamelStream *ciphertext, CamelStream *plaintext, MailDisplay *md) CamelPgpContext *ctx; ctx = camel_pgp_context_new (session, mail_config_get_pgp_type (), - mail_config_get_pgp_path ()); + mail_config_get_pgp_path (), + mail_config_get_remember_pgp_passphrase ()); if (ctx) { camel_pgp_decrypt (ctx, ciphertext, plaintext, &ex); @@ -1238,7 +1239,8 @@ try_inline_pgp_sig (char *start, MailDisplay *md) mail_html_write (md->html, md->stream, "
"); context = camel_pgp_context_new (session, mail_config_get_pgp_type (), - mail_config_get_pgp_path ()); + mail_config_get_pgp_path (), + mail_config_get_remember_pgp_passphrase ()); if (context) { CamelStream *ciphertext; -- cgit v1.2.3