From 1738f9d6d17e530da8c28a547e5e9c7739dcdb8b Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 28 Feb 2020 12:16:33 +0200 Subject: [PATCH] mu4e: Mark mu4e-auto-retrieve-keys as obsolete It's not used anymore --- mu4e/mu4e-vars.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/mu4e/mu4e-vars.el b/mu4e/mu4e-vars.el index cc5252a1..115f6a18 100644 --- a/mu4e/mu4e-vars.el +++ b/mu4e/mu4e-vars.el @@ -332,17 +332,16 @@ Also see `mu4e-compose-context-policy'." "Crypto-related settings." :group 'mu4e) -(defcustom mu4e-auto-retrieve-keys nil - "Attempt to automatically retrieve public keys when needed." - :type 'boolean - :group 'mu4e-crypto) +(make-obsolete-variable 'mu4e-auto-retrieve-keys "no longer used." "1.3.1") (defcustom mu4e-decryption-policy t "Policy for dealing with encrypted parts. The setting is a symbol: * t: try to decrypt automatically * `ask': ask before decrypting anything - * nil: don't try to decrypt anything." + * nil: don't try to decrypt anything. + +Note that this is not used when `mu4e-view-use-gnus' is enabled." :type '(choice (const :tag "Try to decrypt automatically" t) (const :tag "Ask before decrypting anything" ask) (const :tag "Don't try to decrypt anything" nil))