From: Jonas Bernoulli Date: Mon, 27 Jul 2020 15:25:03 +0000 (+0200) Subject: test: Explicitly state that we want to sign with sender X-Git-Tag: 0.31_rc0~87 X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=8b162b40f84e891afa340b72c50b98f62ae57106;p=notmuch-old 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'. --- diff --git a/test/test-lib.sh b/test/test-lib.sh index 8c331b88..31c858d1 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -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 }