From unknown Wed Sep 10 15:50:36 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#41915 <41915@debbugs.gnu.org> To: bug#41915 <41915@debbugs.gnu.org> Subject: Status: [PATCH] gnu: znc: Use HTTPS. Reply-To: bug#41915 <41915@debbugs.gnu.org> Date: Wed, 10 Sep 2025 22:50:36 +0000 retitle 41915 [PATCH] gnu: znc: Use HTTPS. reassign 41915 guix-patches submitter 41915 Timotej Lazar severity 41915 normal tag 41915 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 17 07:46:11 2020 Received: (at submit) by debbugs.gnu.org; 17 Jun 2020 11:46:11 +0000 Received: from localhost ([127.0.0.1]:50569 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jlWWA-0005Do-UN for submit@debbugs.gnu.org; Wed, 17 Jun 2020 07:46:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:57034) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jlWW8-0005De-44 for submit@debbugs.gnu.org; Wed, 17 Jun 2020 07:46:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45340) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jlWW7-0004ru-Qh for guix-patches@gnu.org; Wed, 17 Jun 2020 07:46:07 -0400 Received: from araneo.si ([2001:15c0:2110:3400::2]:55084) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jlWW6-0003iJ-0X for guix-patches@gnu.org; Wed, 17 Jun 2020 07:46:07 -0400 Received: from araneo.si (localhost.lan [127.0.0.1]) by araneo.si (OpenSMTPD) with ESMTP id 82f9dc13 for ; Wed, 17 Jun 2020 11:46:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=araneo.si; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20180623; bh=ZmxoaWGNpJHzrcI7c7RrH6nC95M=; b=j+fbfMewgabK4n5g nd7g4cIZSWAouEKGykETMMo0fSdzhfqzzXWmarztazWzti4gpvpVhb1wdvoT5Va3 jfuw+8ucrX7P1N1BN9sjYxlXxiuEQzye3loF6kJ8CVtnisIKQ0uS0oX+CQR4qqV8 A5qcCNf13hRCwQdB6ORHrWO4Sgi92ZXszWaKKb0hKEwpB/IqbnwFMQWdIviebHF6 8M1QoltsVUl2O3+hVk7DZBMdEW5BBzsyjES6CH/HczkmyhiczPc9Epb10trPRHyE LBW9QaivbtROuDYX9e7gYbjQifOaGBkR6viiUFVFTNqQCODG0/dpS3Lp2sC805a3 V0O6hA== Received: by araneo.si (OpenSMTPD) with ESMTPSA id 1b944d80 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 17 Jun 2020 11:46:04 +0000 (UTC) From: Timotej Lazar To: guix-patches@gnu.org Subject: [PATCH] gnu: znc: Use HTTPS. Date: Wed, 17 Jun 2020 13:45:47 +0200 Message-Id: <20200617114547.10632-1-timotej.lazar@araneo.si> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2001:15c0:2110:3400::2; envelope-from=timotej.lazar@araneo.si; helo=araneo.si X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. 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, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Timotej Lazar 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.3 (--) * gnu/packages/messaging.scm (znc)[source]: Use HTTPS. --- gnu/packages/messaging.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index a79d23ff3c..85b0773665 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -571,7 +571,7 @@ compromised.") (version "1.8.1") (source (origin (method url-fetch) - (uri (string-append "http://znc.in/releases/archive/znc-" + (uri (string-append "https://znc.in/releases/archive/znc-" version ".tar.gz")) (sha256 (base32 -- 2.26.2 From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 17 07:59:53 2020 Received: (at 41915-done) by debbugs.gnu.org; 17 Jun 2020 11:59:53 +0000 Received: from localhost ([127.0.0.1]:50594 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jlWjR-0005Zh-EB for submit@debbugs.gnu.org; Wed, 17 Jun 2020 07:59:53 -0400 Received: from flashner.co.il ([178.62.234.194]:43770) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jlWjP-0005ZV-OV for 41915-done@debbugs.gnu.org; Wed, 17 Jun 2020 07:59:52 -0400 Received: from localhost (unknown [31.210.181.184]) by flashner.co.il (Postfix) with ESMTPSA id 89ECD4025F; Wed, 17 Jun 2020 11:59:45 +0000 (UTC) Date: Wed, 17 Jun 2020 14:59:07 +0300 From: Efraim Flashner To: Timotej Lazar Subject: Re: [bug#41915] [PATCH] gnu: znc: Use HTTPS. Message-ID: <20200617115907.GL1990@E5400> References: <20200617114547.10632-1-timotej.lazar@araneo.si> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="YS7t75H5cNTCpbja" Content-Disposition: inline In-Reply-To: <20200617114547.10632-1-timotej.lazar@araneo.si> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 41915-done Cc: 41915-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: -1.0 (-) --YS7t75H5cNTCpbja Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks. Patch pushed. --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --YS7t75H5cNTCpbja Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl7qBYsACgkQQarn3Mo9 g1FrqQ//RF+Bhib8Zi82PdFcuXg8CBvv/8+YzDIn5LIQC4vHSDODL/sfXhBhJIlk iEOrBxIcUjU3oJf6bbwCysIpgLzMuAhFoaVZssTBgPMcnPsLvh7b4TyuxB1Tur7n eyo0R1JmxzE6hJUA2ZC+Rd+1qpdhgHkBR6yWv9zK+ViiiZ0FuqnGmVmUQhEhX2zV Y0ewOndLyV6UAXq8uM7iDhUwfJL9XsL5qBWeWN14i/nuIUaFH8m1cL1EMqG6CWiE nxPglR0R+Yh8N2fTvRZ7Gx3QjiWpgNNvuqBUiWJGnvRE1KavRiZBVnTcLImJOj6/ 30dqjY6vbtG7OaVsdf9HuiOQw6DKRLlf25cshHAqTTKNJuEpASfFPCQOC9G9DY5I oYoJ+IyxdKL+dq0tx0wK/EP+QwbDJX245zppitRFZ+0GEjCrs3vR8HzrgaNnSwMX KVBgTCiAvQsMAZMLgqTdgpXn2WoP/cvXsNirwZpgMvkfbNyBThcPbwz2BS9cEhcK qFkx9bRqvm71/PNNFertZsSQ68D2Y4lLzRzpzNQp7BHPcyxpBU1H8oFYalBe9dwT hvoVsTNePRs49O1Z+tcE/zvax9OOGyNK1hxPY4oOyGVaGb6FV192MUVCau11fGgB i8dd9DXTIHP6LdYL+MWBUCxO3tsLcQcKi7Gr9rF/t0BOB6pwfEU= =4krh -----END PGP SIGNATURE----- --YS7t75H5cNTCpbja-- From unknown Wed Sep 10 15:50:36 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 16 Jul 2020 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator