]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't enable pinentry loopback mode for gpgsm
authorUlrich Müller <ulm@gentoo.org>
Fri, 17 Nov 2023 11:16:54 +0000 (12:16 +0100)
committerUlrich Müller <ulm@gentoo.org>
Sat, 25 Nov 2023 10:53:25 +0000 (11:53 +0100)
* lisp/epg.el (epg--start): Passphrase entry through the
minibuffer is currently not supported with gpgsm, therefore don't
pass "--pinentry-mode loopback" as an argument when the protocol
is CMS.  (Bug#67012)
* doc/misc/epa.texi (GnuPG Pinentry): Document it.

doc/misc/epa.texi
lisp/epg.el

index 917fd588593ec0b198bdb16df2807e8f88fefdec..1aeaef8990f1e546c8f4c9c6b74298a1c0c5afa5 100644 (file)
@@ -640,6 +640,9 @@ Customize variable @code{epg-pinentry-mode} to @code{loopback} in
 Emacs.
 @end enumerate
 
+Note that loopback Pinentry does not work with @command{gpgsm},
+therefore EasyPG will ignore this setting for it.
+
 There are other options available to use Emacs as Pinentry, you might
 come across a Pinentry called @command{pinentry-emacs} or
 @command{gpg-agent} option @code{allow-emacs-pinentry}.  However,
index aae9b9444b4eb7041f619f9153a8c7b7b0049839..b994c1b9ca2a0d22df4cdb7151dee06a5eff66fd 100644 (file)
@@ -595,7 +595,12 @@ callback data (if any)."
                       (if (epg-context-textmode context) '("--textmode"))
                       (if (epg-context-output-file context)
                           (list "--output" (epg-context-output-file context)))
-                      (if (epg-context-pinentry-mode context)
+                      (if (and (epg-context-pinentry-mode context)
+                               (not
+                                ;; loopback doesn't work with gpgsm
+                                (and (eq (epg-context-protocol context) 'CMS)
+                                     (eq (epg-context-pinentry-mode context)
+                                         'loopback))))
                           (list "--pinentry-mode"
                                 (symbol-name (epg-context-pinentry-mode
                                               context))))