mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
test: Explicitly state that we want to sign with sender
Since Emacs 27 'mml-secure-epg-sign' errors out if we don't opt-in to signing as the sender using 'mml-secure-openpgp-sign-with-sender'.
This commit is contained in:
parent
7b752e9eb4
commit
8b162b40f8
1 changed files with 3 additions and 1 deletions
|
@ -414,7 +414,9 @@ emacs_fcc_message ()
|
|||
(message-goto-body)
|
||||
(insert \"${body}\")
|
||||
$*
|
||||
(notmuch-mua-send-and-exit))" || return 1
|
||||
(let ((mml-secure-smime-sign-with-sender t)
|
||||
(mml-secure-openpgp-sign-with-sender t))
|
||||
(notmuch-mua-send-and-exit)))" || return 1
|
||||
notmuch new $nmn_args >/dev/null
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue