From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id 7ry0D03wN1+QHwAA0tVLHw (envelope-from ) for ; Sat, 15 Aug 2020 14:25:17 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id 4AEEC03wN1/DOAAA1q6Kng (envelope-from ) for ; Sat, 15 Aug 2020 14:25:17 +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 318E094004E for ; Sat, 15 Aug 2020 14:25:15 +0000 (UTC) Received: from [144.217.243.247] (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id CA8B829BB5; Sat, 15 Aug 2020 10:25:06 -0400 (EDT) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by mail.notmuchmail.org (Postfix) with ESMTP id 033C729B31 for ; Sat, 15 Aug 2020 10:25:04 -0400 (EDT) Received: by fethera.tethera.net (Postfix, from userid 1001) id F1A295FDE2; Sat, 15 Aug 2020 10:25:02 -0400 (EDT) Received: (nullmailer pid 436048 invoked by uid 1000); Sat, 15 Aug 2020 14:25:01 -0000 From: David Bremner To: Jonas Bernoulli , notmuch@notmuchmail.org Subject: Re: [PATCH 3/3] test: Explicitly state that we want to sign with sender In-Reply-To: <20200724180924.21944-4-jonas@bernoul.li> References: <20200724180924.21944-1-jonas@bernoul.li> <20200724180924.21944-4-jonas@bernoul.li> Date: Sat, 15 Aug 2020 11:25:01 -0300 Message-ID: <87ft8odm0y.fsf@tethera.net> MIME-Version: 1.0 Message-ID-Hash: FXRSLJ46JQC4SZKKMVSAQ3H7WVKHR5HX X-Message-ID-Hash: FXRSLJ46JQC4SZKKMVSAQ3H7WVKHR5HX X-MailFrom: david@tethera.net 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: -0.97 X-TUID: ORAbTKnGdjh+ Jonas Bernoulli writes: > 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 It seems that notmuch-emacs users will have to set this variable, or perform some other configuration to keep signing working when upgrading to 27.1. Should notmuch be helping this transition somehow? d