From unknown Sat Aug 16 16:15:40 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54431] [PATCH] doc: Fix wrong variable name. Resent-From: EuAndreh Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 16 Mar 2022 23:16:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 54431 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54431@debbugs.gnu.org Cc: EuAndreh X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16474725099130 (code B ref -1); Wed, 16 Mar 2022 23:16:02 +0000 Received: (at submit) by debbugs.gnu.org; 16 Mar 2022 23:15:09 +0000 Received: from localhost ([127.0.0.1]:52513 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUcrF-0002NB-AG for submit@debbugs.gnu.org; Wed, 16 Mar 2022 19:15:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:54630) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUcrE-0002N3-3p for submit@debbugs.gnu.org; Wed, 16 Mar 2022 19:15:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60290) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUcrD-0003EF-L1 for guix-patches@gnu.org; Wed, 16 Mar 2022 19:15:07 -0400 Received: from box.euandre.org ([46.101.160.115]:41799) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1nUcrB-00058U-HM for guix-patches@gnu.org; Wed, 16 Mar 2022 19:15:07 -0400 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 8F288FC490; Wed, 16 Mar 2022 20:14:27 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1647472470; bh=UIwBgw/eEVzatPPQvCRcMXarDmYrR38fLP+QDg82Qzc=; h=From:To:Cc:Subject:Date:From; b=k1EXYAD0jzrvFJNnwtOpHfk5iGYsmgdfmGboZ+3Yq6RWQ/jexEbhfvjLEy1M2+r3V D3iVr+dSUsSHLVtHlN8xyf0xjfpBZ69gUUafgevtIql04hTAWOTuS/rImssIVuwzxN v9FzBZojct+n9dQFxB10s9XEE/VisFw03G0WC3nQE1YLjRrVBkGh3cj5YUD4V+sDLN MEABcYcsptjBdFTUC/uJvCBWqSza8gtjBQIpb6WqV528X8/Et7XTJx+Bj6wIG2lOdp i/sgfmIMWvMP+WczJKGG7fgqbtTtW2xg1uav1A1ydskQXqdLnXdmiurVN/CUgVfDCm Wedqi+qHuLeWg== From: EuAndreh Date: Wed, 16 Mar 2022 20:14:23 -0300 Message-Id: <20220316231423.4007620-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * doc/guix.texi (Mail services): use correct variable name. --- doc/guix.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guix.texi b/doc/guix.texi index dbe281ead7..e0704f1aa4 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -23822,7 +23822,7 @@ Data type representing the configuration of opensmtpd. @item @code{package} (default: @var{opensmtpd}) Package object of the OpenSMTPD SMTP server. -@item @code{config-file} (default: @code{%default-opensmtpd-file}) +@item @code{config-file} (default: @code{%default-opensmtpd-config-file}) File-like object of the OpenSMTPD configuration file to use. By default it listens on the loopback network interface, and allows for mail from users and daemons on the local machine, as well as permitting email to -- 2.35.1 From unknown Sat Aug 16 16:15:40 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: EuAndreh Subject: bug#54431: closed (Re: bug#54431: [PATCH] doc: Fix wrong variable name.) Message-ID: References: <878rt6q5ah.fsf@gnu.org> <20220316231423.4007620-1-eu@euandre.org> X-Gnu-PR-Message: they-closed 54431 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54431@debbugs.gnu.org Date: Fri, 18 Mar 2022 22:13:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1647641583-19774-1" This is a multi-part message in MIME format... ------------=_1647641583-19774-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54431: [PATCH] doc: Fix wrong variable name. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54431@debbugs.gnu.org. --=20 54431: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54431 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1647641583-19774-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54431-done) by debbugs.gnu.org; 18 Mar 2022 22:12:24 +0000 Received: from localhost ([127.0.0.1]:58567 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVKpc-00057d-Ap for submit@debbugs.gnu.org; Fri, 18 Mar 2022 18:12:24 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39188) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVKpa-00057O-U4 for 54431-done@debbugs.gnu.org; Fri, 18 Mar 2022 18:12:23 -0400 Received: from [2001:470:142:3::e] (port=36448 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nVKpN-0003P0-U9; Fri, 18 Mar 2022 18:12:14 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=zOlZgeNKuu5ZTpjKScRuC6GrDFzCGqBOskTsAQONSMI=; b=PDZkucIn8LO9afLfYZFO EgvaQxjyM0bPEvcDjDcOwUsq372nuxtpZ56LDGCGmD2kHL7egbgXR2vJjKzxklH98pBVGNjgOJZ0m DR19uNsL81uMpbp7t9mkhq+39IrG67gpGSbXxQ699U7ItWJ2RfJlAPyjfVLnTcfExXOsTk/ODj959 4lqQgW4Q1wHZEKbV2QV87Ml64DovLiomPN9VRXR2PED4iS7PPVdUUcO7gNIpUJmL08IUh60spkjcI 1xJSHMNxrzJ9sdzxVN/bkBB6qyYr1moPPU55i9ZaE+P3mpsXnwEk11duzsDEsO2DJd0qkbsGSKSEG CKLKnJTb9sg/Sg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:63249 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nVKpN-0001Pw-1e; Fri, 18 Mar 2022 18:12:09 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: EuAndreh Subject: Re: bug#54431: [PATCH] doc: Fix wrong variable name. References: <20220316231423.4007620-1-eu@euandre.org> Date: Fri, 18 Mar 2022 23:12:06 +0100 In-Reply-To: <20220316231423.4007620-1-eu@euandre.org> (EuAndreh's message of "Wed, 16 Mar 2022 20:14:23 -0300") Message-ID: <878rt6q5ah.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 54431-done Cc: 54431-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, EuAndreh skribis: > * doc/guix.texi (Mail services): use correct variable name. Applied, thanks! Ludo=E2=80=99. ------------=_1647641583-19774-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 16 Mar 2022 23:15:09 +0000 Received: from localhost ([127.0.0.1]:52513 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUcrF-0002NB-AG for submit@debbugs.gnu.org; Wed, 16 Mar 2022 19:15:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:54630) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUcrE-0002N3-3p for submit@debbugs.gnu.org; Wed, 16 Mar 2022 19:15:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60290) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUcrD-0003EF-L1 for guix-patches@gnu.org; Wed, 16 Mar 2022 19:15:07 -0400 Received: from box.euandre.org ([46.101.160.115]:41799) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1nUcrB-00058U-HM for guix-patches@gnu.org; Wed, 16 Mar 2022 19:15:07 -0400 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 8F288FC490; Wed, 16 Mar 2022 20:14:27 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1647472470; bh=UIwBgw/eEVzatPPQvCRcMXarDmYrR38fLP+QDg82Qzc=; h=From:To:Cc:Subject:Date:From; b=k1EXYAD0jzrvFJNnwtOpHfk5iGYsmgdfmGboZ+3Yq6RWQ/jexEbhfvjLEy1M2+r3V D3iVr+dSUsSHLVtHlN8xyf0xjfpBZ69gUUafgevtIql04hTAWOTuS/rImssIVuwzxN v9FzBZojct+n9dQFxB10s9XEE/VisFw03G0WC3nQE1YLjRrVBkGh3cj5YUD4V+sDLN MEABcYcsptjBdFTUC/uJvCBWqSza8gtjBQIpb6WqV528X8/Et7XTJx+Bj6wIG2lOdp i/sgfmIMWvMP+WczJKGG7fgqbtTtW2xg1uav1A1ydskQXqdLnXdmiurVN/CUgVfDCm Wedqi+qHuLeWg== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH] doc: Fix wrong variable name. Date: Wed, 16 Mar 2022 20:14:23 -0300 Message-Id: <20220316231423.4007620-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: EuAndreh X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * doc/guix.texi (Mail services): use correct variable name. --- doc/guix.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guix.texi b/doc/guix.texi index dbe281ead7..e0704f1aa4 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -23822,7 +23822,7 @@ Data type representing the configuration of opensmtpd. @item @code{package} (default: @var{opensmtpd}) Package object of the OpenSMTPD SMTP server. -@item @code{config-file} (default: @code{%default-opensmtpd-file}) +@item @code{config-file} (default: @code{%default-opensmtpd-config-file}) File-like object of the OpenSMTPD configuration file to use. By default it listens on the loopback network interface, and allows for mail from users and daemons on the local machine, as well as permitting email to -- 2.35.1 ------------=_1647641583-19774-1--