From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp10.migadu.com ([2001:41d0:2:bcc0::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms9.migadu.com with LMTPS id eDIeAIFTa2SRQwEASxT56A (envelope-from ) for ; Mon, 22 May 2023 13:35:29 +0200 Received: from aspmx1.migadu.com ([2001:41d0:2:bcc0::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp10.migadu.com with LMTPS id QGCiOoBTa2TNZAAAG6o9tA (envelope-from ) for ; Mon, 22 May 2023 13:35:28 +0200 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 9C3BDD0F5 for ; Mon, 22 May 2023 13:35:28 +0200 (CEST) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1q13og-0000CF-Ax; Mon, 22 May 2023 07:35:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q13od-0000Bl-HV for guix-patches@gnu.org; Mon, 22 May 2023 07:35:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1q13od-0004hI-7I for guix-patches@gnu.org; Mon, 22 May 2023 07:35:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1q13oc-0005b7-1z for guix-patches@gnu.org; Mon, 22 May 2023 07:35:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#62642] [PATCH] services: certbot: Fix nginx crash when certbot is used without domains Resent-From: Saku Laesvuori Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 22 May 2023 11:35:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 62642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Bruno Victal , 62642@debbugs.gnu.org Received: via spool by 62642-submit@debbugs.gnu.org id=B62642.168475530021507 (code B ref 62642); Mon, 22 May 2023 11:35:02 +0000 Received: (at 62642) by debbugs.gnu.org; 22 May 2023 11:35:00 +0000 Received: from localhost ([127.0.0.1]:33719 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q13oZ-0005ao-QX for submit@debbugs.gnu.org; Mon, 22 May 2023 07:35:00 -0400 Received: from vmi571514.contaboserver.net ([75.119.130.101]:55954 helo=mail.laesvuori.fi) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q13oX-0005ae-4x for 62642@debbugs.gnu.org; Mon, 22 May 2023 07:34:58 -0400 Received: from X-kone (unknown [185.50.245.19]) by mail.laesvuori.fi (Postfix) with ESMTPSA id 3A605342452; Mon, 22 May 2023 13:35:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=laesvuori.fi; s=mail; t=1684755301; bh=23smGn9bQ2XraryWhp55IE6QlQnaEnDMWE0DHR00rqE=; h=Date:From:To:Subject:References:In-Reply-To; b=nrYTDghgB4dyPvRQYzafZsdctazwQ+89cbH35wMTPaATcb6ztvyDqom9l5u/2zCQP 5cWZx9p7xbKkcRyXOjzHBJXwYsdATcd4+O7K98tbiiQzRiZbbyj2WbP+BSdti4Oo8n t/wc/UhX8y+I3s3ed1QxvcZZ8RWGx29o/kwLzBuI= Date: Mon, 22 May 2023 14:34:52 +0300 Message-ID: <20230522113452.iieqaggdfkv5lxm4@X-kone> References: <20230403133241.14760-1-saku@laesvuori.fi> <66755b58-1cb1-eae6-a4ac-69c174ed58aa@makinata.eu> <20230403180659.zhbtbfnn2uhgplgc@X-kone> <84bb2e1c-db0c-ac08-9275-ffcc0f828b1c@makinata.eu> <20230413090051.p66zgoyvne6gbq7x@X-kone> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="uihfc5ngim3hqx5i" Content-Disposition: inline In-Reply-To: <20230413090051.p66zgoyvne6gbq7x@X-kone> X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-to: Saku Laesvuori X-ACL-Warn: , Saku Laesvuori via Guix-patches From: Saku Laesvuori via Guix-patches via Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: guix-patches-bounces+larch=yhetil.org@gnu.org X-Migadu-Country: US X-Migadu-Flow: FLOW_IN ARC-Seal: i=1; s=key1; d=yhetil.org; t=1684755328; a=rsa-sha256; cv=none; b=Q03KpQEm+p31jIadOdum/Ph9BooOfNw9ScNNX6r0sVcJa1qtsZMmrJ51CYLRCRcAqsyhiy MmWGXxUyvFY4T9k7VKYfR5fIYGq9jzgyHJxl/q62i5GuEkt7mD5s9yL9avqXvMbtFLbk7F vh0HIInwym9qhgzkDM6tyBtarBP9bVMy5GQjI/GU4w5pWGy5kMXmZFZHhd1MNi18OqxpjM DyH1Kmz9iUA0KWIPoC6wPYP2o5giC4L4u2p1JYFA0MeCXKGjbFYiN3yEcKc2N1NxNk1zGv tWNxpO+8kEqsURVpQ22cSRR9DIRQ2j9nfzSgNeIdNcwSQ/ZF+czkS/GoQdpZzA== ARC-Authentication-Results: i=1; aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=laesvuori.fi header.s=mail header.b=nrYTDghg; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of "guix-patches-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="guix-patches-bounces+larch=yhetil.org@gnu.org" ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=yhetil.org; s=key1; t=1684755328; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type:resent-cc:resent-from:resent-sender: resent-message-id:in-reply-to:in-reply-to:references:references: list-id:list-help:list-unsubscribe:list-subscribe:list-post: dkim-signature; bh=23smGn9bQ2XraryWhp55IE6QlQnaEnDMWE0DHR00rqE=; b=tdo2XqxW+b1uzFeTVaT52/X8M3Vzya9FOPZRb7P48muUMJP6BXvqzSbKPSkFoGzAwG+yoV x2bXWiW0k8wL58MfzuWvnbk7ugwfmUBiEqXRemD8XHnFYXdJm8rDdBvLioDY3MRBp5+0U0 7/goKSd+Ku0YSR1NlQhbofE71gT1VuQhqlAZK+79U0+AC2VsTJqRv5TBMnyApI1S0qTkxw UQYxftfXwURYZAl6bNE5xGQr6msAsJQAUM81rEwdOmPdy66U9ll/nn4EZOYe+IR2BB4ias ES5oENFsGi0uQUzn1C8paXvl3j1IF7dG7mXiowuHfvmE/XqCUSQcpZmPo871Cw== X-Migadu-Spam-Score: -2.81 X-Spam-Score: -2.81 X-Migadu-Queue-Id: 9C3BDD0F5 X-Migadu-Scanner: scn0.migadu.com Authentication-Results: aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=laesvuori.fi header.s=mail header.b=nrYTDghg; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of "guix-patches-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="guix-patches-bounces+larch=yhetil.org@gnu.org" X-TUID: BajFny9xMf6z --uihfc5ngim3hqx5i Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Is there something blocking this patch or is it just waiting for someone to get around to applying it? - Saku --uihfc5ngim3hqx5i Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoMkZR3NPB29fCOn/JX0oSiodOjIFAmRrU1wACgkQJX0oSiod OjLrIRAAg+xmk/aKyyfuGb1HS8rfEF7BNypFBOwWdPRL0tZA9rBdDX3ZnZ/tHet+ 9tFpUiWCM2d/O2tZVOx4MCnN5RvUp5SCnQ1nny0WJnyJDN2qcKY+3J13PDxkC7rw ujN6n+Ua8MSywGWNgVPkzs/BkxPMIcThI1UuR6ff4ep9I8/OAT0Y+mm8r4fFXcos nQWdruBuRZFInRIM/L75MUANtJ1e7yDTGpIvJhA/jZlqF8vNEIvsZ0BnwyodBXuG yAqX8B6mdlpehQWXpZARxhS/sv4MW6LvRzIKRNczxfW+0+ROzz1csIkrX71lR25+ G3qF6KbYBcqNgttVkaTxcX4vh8QTRRnGbrRwlLUaQ1ZlCNCH+xeLV1hX4wh39LgG QoygKJjpad2SfwKdnA+ENNbScAlzsVD7GZDuV8QOca+Kojo2Q1sNmjnPTGBZd08p 43Sr/L/38OwZXf81zByIy7QqOoUJ64IcioGzo+3P7RADM7+o/gZSFsyCjmEyvRsl 6PXYtyAITwD2sVp9T4At1ej5VsFAN9f3TSs3vHkZofS9fXzHa4aLLA/PgxpWFNbZ cNtH7LTai7/6Er4T7gtEv1z9xXJa0ZY7hDasyc5Qc8kbbUur1xiNEDGG2SGr7j6j IImuOh6FDIqbgf/Hy20KHOjJP7CjzGxjN15mn2AhUXR2xpLMb0A= =+4Ic -----END PGP SIGNATURE----- --uihfc5ngim3hqx5i--