mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: tree bugfix
Formerly replying to an encrypted message in tree-view did not work: the message was not decrypted. This commit makes notmuch-tree respect the setting of notmuch-crypto-process-mime. In particular, if notmuch-crypto-process-mime is set to t, then replying to encrypted messages in tree mode will now decrypt the reply (as it already did in show mode).
This commit is contained in:
parent
e56fb9785c
commit
3d38baf352
1 changed files with 5 additions and 0 deletions
|
@ -867,6 +867,11 @@ the same as for the function notmuch-tree."
|
|||
(setq notmuch-tree-query-context query-context)
|
||||
(setq notmuch-tree-target-msg target)
|
||||
(setq notmuch-tree-open-target open-target)
|
||||
;; Set the default value for `notmuch-show-process-crypto' in this
|
||||
;; buffer. Although we don't use this some of the functions we call
|
||||
;; (such as reply) do. It is a buffer local variable so setting it
|
||||
;; will not affect genuine show buffers.
|
||||
(setq notmuch-show-process-crypto notmuch-crypto-process-mime)
|
||||
|
||||
(erase-buffer)
|
||||
(goto-char (point-min))
|
||||
|
|
Loading…
Reference in a new issue