mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: use epg-gpg-program
Adjusted notmuch-crypto gpg call-process function to respect the GPG program set by the EasyPG epg-gpg-program variable. This is to correct a problem observed on NixOS where only gpg2 is installed by default. The Notmuch Emacs frontend fails when trying to access someone's key to verify their signature when it cannot find the GPG binary.
This commit is contained in:
parent
c0c5645538
commit
f0d06c8ca3
1 changed files with 4 additions and 3 deletions
|
@ -21,6 +21,7 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(require 'epg)
|
||||
(require 'notmuch-lib)
|
||||
|
||||
(defcustom notmuch-crypto-process-mime nil
|
||||
|
@ -140,7 +141,7 @@ mode."
|
|||
(with-selected-window window
|
||||
(with-current-buffer buffer
|
||||
(goto-char (point-max))
|
||||
(call-process "gpg" nil t t "--list-keys" fingerprint))
|
||||
(call-process epg-gpg-program nil t t "--list-keys" fingerprint))
|
||||
(recenter -1))))
|
||||
|
||||
(defun notmuch-crypto-sigstatus-error-callback (button)
|
||||
|
@ -151,9 +152,9 @@ mode."
|
|||
(with-selected-window window
|
||||
(with-current-buffer buffer
|
||||
(goto-char (point-max))
|
||||
(call-process "gpg" nil t t "--recv-keys" keyid)
|
||||
(call-process epg-gpg-program nil t t "--recv-keys" keyid)
|
||||
(insert "\n")
|
||||
(call-process "gpg" nil t t "--list-keys" keyid))
|
||||
(call-process epg-gpg-program nil t t "--list-keys" keyid))
|
||||
(recenter -1))
|
||||
(notmuch-show-refresh-view)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue