From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44844) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iBPeJ-0003ZY-H8 for guix-patches@gnu.org; Fri, 20 Sep 2019 16:37:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iBPeI-0004cf-Ex for guix-patches@gnu.org; Fri, 20 Sep 2019 16:37:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49796) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iBPeI-0004cU-CP for guix-patches@gnu.org; Fri, 20 Sep 2019 16:37:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iBPeI-0007wa-9x for guix-patches@gnu.org; Fri, 20 Sep 2019 16:37:02 -0400 Subject: bug#37427: [PATCH] services: dovecot: Fix predicate names for free-form fields Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190916144215.25669-1-levenson@mmer.org> Date: Fri, 20 Sep 2019 22:35:53 +0200 In-Reply-To: <20190916144215.25669-1-levenson@mmer.org> (Alexey Abramov's message of "Mon, 16 Sep 2019 16:42:15 +0200") Message-ID: <87blvepuxi.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Alexey Abramov Cc: 37427-done@debbugs.gnu.org Hi Alexey, Alexey Abramov skribis: > --- a/gnu/services/mail.scm > +++ b/gnu/services/mail.scm > @@ -137,7 +137,7 @@ > (define (free-form-fields? val) > (match val > (() #t) > - ((((? symbol?) . (? string)) . val) (free-form-fields? val)) > + ((((? symbol?) . (? string?)) . val) (free-form-fields? val)) Good catch! I tweaked the commit log and committed. Thanks, Ludo=E2=80=99.