From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id 9ICUI3IlG18TZQAA0tVLHw (envelope-from ) for ; Fri, 24 Jul 2020 18:16:18 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id AEMgH3IlG19ASQAAB5/wlQ (envelope-from ) for ; Fri, 24 Jul 2020 18:16:18 +0000 Received: from mail.notmuchmail.org (nmbug.tethera.net [IPv6:2607:5300:201:3100::1657]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id E92EB94004E for ; Fri, 24 Jul 2020 18:16:16 +0000 (UTC) Received: from [144.217.243.247] (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id 9F0DF27B08; Fri, 24 Jul 2020 14:16:04 -0400 (EDT) X-Greylist: delayed 394 seconds by postgrey-1.36 at nmbug; Fri, 24 Jul 2020 14:16:02 EDT Received: from mail.hostpark.net (mail.hostpark.net [212.243.197.30]) by mail.notmuchmail.org (Postfix) with ESMTPS id 1268D1F704 for ; Fri, 24 Jul 2020 14:16:01 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 07451160DE for ; Fri, 24 Jul 2020 20:09:25 +0200 (CEST) X-Virus-Scanned: by Hostpark/NetZone Mailprotection at hostpark.net Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail1.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id vgiz-WNARCVg for ; Fri, 24 Jul 2020 20:09:24 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id C931D160FB for ; Fri, 24 Jul 2020 20:09:24 +0200 (CEST) From: Jonas Bernoulli To: notmuch@notmuchmail.org Subject: [PATCH 3/3] test: Explicitly state that we want to sign with sender Date: Fri, 24 Jul 2020 20:09:24 +0200 Message-Id: <20200724180924.21944-4-jonas@bernoul.li> X-Mailer: git-send-email 2.26.0 In-Reply-To: <20200724180924.21944-1-jonas@bernoul.li> References: <20200724180924.21944-1-jonas@bernoul.li> MIME-Version: 1.0 Message-ID-Hash: 66LR7JYZWRZMQMNUJ23JDQ4UUDUR6VS5 X-Message-ID-Hash: 66LR7JYZWRZMQMNUJ23JDQ4UUDUR6VS5 X-MailFrom: jonas@bernoul.li X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-notmuch.notmuchmail.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.1 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 2607:5300:201:3100::1657 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Spam-Score: 1.53 X-TUID: 3r7NuD2We4vR 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'. --- test/test-lib.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test-lib.sh b/test/test-lib.sh index 8c331b88..90e26639 100644 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -414,7 +414,8 @@ emacs_fcc_message () (message-goto-body) (insert \"${body}\") $* - (notmuch-mua-send-and-exit))" || return 1 + (let ((mml-secure-openpgp-sign-with-sender t)) + (notmuch-mua-send-and-exit)))" || return 1 notmuch new $nmn_args >/dev/null } -- 2.26.0