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:
Jonas Bernoulli 2020-07-27 17:25:03 +02:00 committed by David Bremner
parent 7b752e9eb4
commit 8b162b40f8

View file

@ -414,7 +414,9 @@ emacs_fcc_message ()
(message-goto-body) (message-goto-body)
(insert \"${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 notmuch new $nmn_args >/dev/null
} }