Bug#1128929: marked as done (ITP: golang-github-launchdarkly-go-ntlm-proxy-auth -- Authorize to an NTLM Proxy for a HTTP(S) connection in Golang (LaunchDarkly fork))
"Debian Bug Tracking System" <[email protected]> Mon, 03 Aug 2026 15:09:02 +0000
| Newsgroups | gmane.linux.debian.devel.wnpp |
|---|---|
| Message-ID | <handler.1128929.D1128929.17857696252806954.ackdone@bugs.debian.org> |
This is a multi-part message in MIME format... ------------=_1785769742-2808422-0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your message dated Mon, 03 Aug 2026 15:07:02 +0000 with message-id <[email protected]> and subject line Bug#1128929: fixed in golang-github-launchdarkly-go-ntlm-p= roxy-auth 1.0.2-1 has caused the Debian Bug report #1128929, regarding ITP: golang-github-launchdarkly-go-ntlm-proxy-auth -- Authorize t= o an NTLM Proxy for a HTTP(S) connection in Golang (LaunchDarkly fork) to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) --=20 1128929: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D1128929 Debian Bug Tracking System Contact [email protected] with problems ------------=_1785769742-2808422-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by bugs.debian.org; 24 Feb 2026 16:20:12 +0000 X-Spam-Checker-Version: SpamAssassin 4.0.1-bugs.debian.org_2005_01_02 (2024-03-25) on buxtehude.debian.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=4.0 tests=BAYES_00, BODY_INCLUDES_PACKAGE,DKIM_ADSP_CUSTOM_MED,FORGED_GMAIL_RCVD,FOURLA, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HAS_PACKAGE, HEADER_FROM_DIFFERENT_DOMAINS,NML_ADSP_CUSTOM_MED,RCVD_IN_PBL, RDNS_NONE,SPF_HELO_NONE,SPF_SOFTFAIL,SPOOFED_FREEMAIL, SPOOFED_FREEMAIL_NO_RDNS,SPOOF_GMAIL_MID,WORD_WITHOUT_VOWELS, X_DEBBUGS_CC autolearn=ham autolearn_force=no version=4.0.1-bugs.debian.org_2005_01_02 X-Spam-Bayes: score:0.0000 Tokens: new, 42; hammy, 149; neutral, 54; spammy, 1. spammytokens:0.968-+--!!! hammytokens:0.000-+--sk:golang, 0.000-+--sk:golang-, 0.000-+--HX-Debbugs-CC:sk:debian-, 0.000-+--Golang, 0.000-+--golang Return-path: <"un1x0n@potemkinmr"@gmail.com> Received: from [5.144.123.73] (port=37032 helo=Modern-14-C5M.lan) by buxtehude.debian.org with esmtps (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from <"un1x0n@potemkinmr"@gmail.com>) id 1vuv8t-001ED8-1m for [email protected]; Tue, 24 Feb 2026 16:20:12 +0000 Received: by Modern-14-C5M.lan (Postfix, from userid 1000) id 2042213C0D65; Tue, 24 Feb 2026 19:19:49 +0300 (MSK) From: "Mikhail Potemkin" <[email protected]> To: [email protected] Subject: ITP: golang-github-launchdarkly-go-ntlm-proxy-auth -- Authorize to an NTLM Proxy for a HTTP(S) connection in Golang (LaunchDarkly fork) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Debbugs-CC: [email protected], [email protected] Message-Id: <[email protected]> Date: Tue, 24 Feb 2026 19:19:49 +0300 (MSK) Delivered-To: [email protected] Package: wnpp Severity: wishlist Owner: Mikhail Potemkin <[email protected]> * Package name : golang-github-launchdarkly-go-ntlm-proxy-auth Version : 1.0.2-1 Upstream Author : LaunchDarkly * URL : https://github.com/launchdarkly/go-ntlm-proxy-auth * License : MIT Programming Lang: Go Description : Authorize to an NTLM Proxy for a HTTP(S) connection in Golang (LaunchDarkly fork) go-ntlm-proxy-auth . License: MIT (https://opensource.org/licenses/MIT) GoDoc (https://godoc.org/github.com/launchdarkly/go-ntlm-proxy-auth) Build and Test (https://github.com/launchdarkly/go-ntlm-proxy- auth/actions/workflows/ci.yml) . With this package, you can connect to http/https servers protected by an NTLM proxy in Golang. . This is a fork of (https://github.com/Codehardt/go-ntlm-proxy-auth) which adds support for HTTPS proxy URLs. It also uses the fork (https://github.com/launchdarkly/go-ntlmssp) instead of github.com/Azure/go-ntlmssp. . Example: NewNTLMProxyDialContext . // create a dialer dialer := &net.Dialer{ Timeout: 30 * time.Second, KeepAlive: 30 * time.Second, } . // wrap dial context with NTLM ntlmDialContext := ntlm.NewNTLMProxyDialContext(dialer, proxyURL, "user", "password", "domain", nil) . // create a http(s) client client := &http.Client{ Transport: &http.Transport{ Proxy: nil, // !!! IMPORTANT, do not set proxy here !!! DialContext: ntlmDialContext, }, } . Example: WrapDialContext (deprecated - does not support HTTPS proxy URL) . // create a dialer dialer := &net.Dialer{ Timeout: 30 * time.Second, KeepAlive: 30 * time.Second, } . // wrap dial context with NTLM ntlmDialContext := ntlm.WrapDialContext(dialer.DialContext, "proxyAddr", "user", "password", "domain") . // create a http(s) client client := &http.Client{ Transport: &http.Transport{ Proxy: nil, // !!! IMPORTANT, do not set proxy here !!! DialContext: ntlmDialContext, }, } Needed by golang-github-launchdarkly-go-server-sdk ------------=_1785769742-2808422-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 1128929-close) by bugs.debian.org; 3 Aug 2026 15:07:05 +0000 X-Spam-Checker-Version: SpamAssassin 4.0.1-bugs.debian.org_2005_01_02 (2024-03-25) on buxtehude.debian.org X-Spam-Level: X-Spam-Status: No, score=-110.9 required=4.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FOURLA,FREEMAIL_FORGED_REPLYTO, FVGT_m_MULTI_ODD,HAS_BUG_NUMBER,MD5_SHA1_SUM,PGPSIGNATURE, RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS,USER_IN_DKIM_WELCOMELIST autolearn=ham autolearn_force=no version=4.0.1-bugs.debian.org_2005_01_02 X-Spam-Bayes: score:0.0000 Tokens: new, 94; hammy, 150; neutral, 141; spammy, 0. spammytokens: hammytokens:0.000-+--HX-Debian:DAK, 0.000-+--H*rp:D*ftp-master.debian.org, 0.000-+--UD:debian.tar.xz, 0.000-+--H*r:sk:fasolo., 0.000-+--H*MI:fasolo Return-path: <[email protected]> Received: from mitropoulos.debian.org ([2001:648:2ffc:deb:216:61ff:fe9d:958d]:45006) by buxtehude.debian.org with esmtps (TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from <[email protected]>) id 1wquFt-00BmCu-29 for [email protected]; Mon, 03 Aug 2026 15:07:05 +0000 Received: via submission from C=NA,ST=NA,L=Ankh Morpork,O=Debian SMTP,OU=Debian SMTP CA,CN=fasolo.debian.org,[email protected] (verified) by mitropoulos.debian.org with esmtps (TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from <[email protected]>) id 1wquFr-00Gx8W-3B for [email protected]; Mon, 03 Aug 2026 15:07:03 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ftp-master.debian.org; s=smtpauto.fasolo; h=Date:Message-Id:Content-Type: Subject:MIME-Version:To:Reply-To:From:Cc:Content-Transfer-Encoding:Content-ID :Content-Description:In-Reply-To:References; bh=N7q5r+A97M4CK4CXMmMEg9YJfWyo0sFfpeTV8Y27pEY=; b=BrcomfVEnD0DZ1/1oJseMDP4TX khNAF493TxI/mbhYCZYCPpVt0yGeKGrr2nThKGZhg1dvv6fh8V9qKLQLRaAjSDlZcf97ka8fCiwHN 6dz1MgRUWSxYxD426QhzAxVkhZB620BQGsXwKlTxnVIcUZaeYBkCRDFbX11wrlKrStost1pwapnFt ybJevjSDuA/XY+gcYCJSZsRJuDVOjqfKgNJwNh8AV2n9LhPeW4jJmxASS4clPZ6fBYoJBggteLqQi VJoWfP75bpC/sS+3gI60vkNTMAFaVPrWsB3+pDbIdQr5i/q1tFwMrtbAvbTyatt5FC6fAFv62f8mI BxOT+Avw==; Received: from dak by fasolo.debian.org with local (Exim 4.98.2) (envelope-from <[email protected]>) id 1wquFq-00000006lIo-3RB5; Mon, 03 Aug 2026 15:07:02 +0000 From: Debian FTP Masters <[email protected]> Reply-To: Mikhail Potemkin <[email protected]> To: [email protected] X-DAK: dak process-policy X-Debian: DAK X-Debian-Package: golang-github-launchdarkly-go-ntlm-proxy-auth Debian: DAK Debian-Changes: golang-github-launchdarkly-go-ntlm-proxy-auth_1.0.2-1_amd64.changes Debian-Source: golang-github-launchdarkly-go-ntlm-proxy-auth Debian-Version: 1.0.2-1 Debian-Architecture: source all Debian-Suite: unstable Debian-Archive-Action: accept MIME-Version: 1.0 Subject: Bug#1128929: fixed in golang-github-launchdarkly-go-ntlm-proxy-auth 1.0.2-1 Content-Type: multipart/signed; micalg="pgp-sha256"; protocol="application/pgp-signature"; boundary="===============5410845438763942744==" Message-Id: <[email protected]> Date: Mon, 03 Aug 2026 15:07:02 +0000 --===============5410845438763942744== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Source: golang-github-launchdarkly-go-ntlm-proxy-auth Source-Version: 1.0.2-1 Done: Mikhail Potemkin <[email protected]> We believe that the bug you reported is fixed in the latest version of golang-github-launchdarkly-go-ntlm-proxy-auth, which is due to be installed i= n the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mikhail Potemkin <[email protected]> (supplier of updated golang-github-la= unchdarkly-go-ntlm-proxy-auth package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Wed, 10 Jun 2026 12:52:06 +0000 Source: golang-github-launchdarkly-go-ntlm-proxy-auth Binary: golang-github-launchdarkly-go-ntlm-proxy-auth-dev Architecture: source all Version: 1.0.2-1 Distribution: unstable Urgency: medium Maintainer: Debian Go Packaging Team <[email protected]> Changed-By: Mikhail Potemkin <[email protected]> Description: golang-github-launchdarkly-go-ntlm-proxy-auth-dev - Authorize to an NTLM Pro= xy for a HTTP(S) connection in Golang (li Closes: 1128929 Changes: golang-github-launchdarkly-go-ntlm-proxy-auth (1.0.2-1) unstable; urgency=3D= medium . * Initial release (Closes: #1128929) Checksums-Sha1: 9b9ae3e8e404b714760856a9a8d677826fea3321 2597 golang-github-launchdarkly-go-= ntlm-proxy-auth_1.0.2-1.dsc 1a41214471905dab6b16445ba0d81eea646d80bd 10235 golang-github-launchdarkly-go= -ntlm-proxy-auth_1.0.2.orig.tar.gz 03b324e539ba5a17b2e5be951b853b5f252846df 2692 golang-github-launchdarkly-go-= ntlm-proxy-auth_1.0.2-1.debian.tar.xz 888a1e51ecd9d5e0d2b1068c7c230a0575818690 4832 golang-github-launchdarkly-go-= ntlm-proxy-auth-dev_1.0.2-1_all.deb cae8b1b8101514fbc62c6c2c5b9221059690f3d7 6389 golang-github-launchdarkly-go-= ntlm-proxy-auth_1.0.2-1_amd64.buildinfo Checksums-Sha256: bbffdc3e2553a7c04edebc3b992f3f886432fb49e8c5b09c667b3a8a3f0fccc6 2597 golang= -github-launchdarkly-go-ntlm-proxy-auth_1.0.2-1.dsc db9d57d0465f368f651a107fdbb0fe730a052271e71efbc7ac7d7bdef30a7e2d 10235 golan= g-github-launchdarkly-go-ntlm-proxy-auth_1.0.2.orig.tar.gz 0fc296ac267354d2eac7346732a5c554846a54f33a16ce344c33eb512b30745c 2692 golang= -github-launchdarkly-go-ntlm-proxy-auth_1.0.2-1.debian.tar.xz 5a3408b886e53e4dc0889a51ee039d776004f541ae92d8f3fb6f563e9619421c 4832 golang= -github-launchdarkly-go-ntlm-proxy-auth-dev_1.0.2-1_all.deb 77d01f6b0f57ea06d73515da12a3466f873bbb1f760213153e519b2ec117c056 6389 golang= -github-launchdarkly-go-ntlm-proxy-auth_1.0.2-1_amd64.buildinfo Files: 5e2f39e75f911b20064a26517e67c9e0 2597 golang optional golang-github-launchda= rkly-go-ntlm-proxy-auth_1.0.2-1.dsc 62ebbd6cb3c8e855a70dc888d9183b28 10235 golang optional golang-github-launchd= arkly-go-ntlm-proxy-auth_1.0.2.orig.tar.gz f378df152a5c0b78bd23781cb95f8715 2692 golang optional golang-github-launchda= rkly-go-ntlm-proxy-auth_1.0.2-1.debian.tar.xz cd2cd22fc42748fe52fdf5f6511ac38f 4832 golang optional golang-github-launchda= rkly-go-ntlm-proxy-auth-dev_1.0.2-1_all.deb beee7566845abd0b94956ae146df6e84 6389 golang optional golang-github-launchda= rkly-go-ntlm-proxy-auth_1.0.2-1_amd64.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmbRSsR88dMO0U+RvvthEn87o2ogFAmpvIocACgkQvthEn87o 2ojgBQ/+Iwqz5Pa9qchrur/Ze21oXyOuV6h6Hp9y8JszlOM6N1ofiza28ly8cKGg ANoqtkVcqY+iW2IWtFEx0j2BH373lK6e2u164R+hlNP5iTwT0YlQbREFl51sr7rB fUiE3LfDtrG6KhoG1hZlCCDnEHSmCLioKkr4lK4XO8HtwArnpZUpw/rpSS8myVz8 thwofD5ceYM7ZHY3UVBTSd7HDbzNl9O1QoSXyZf2JaCmq3JEHx5vdbiA/XfVJA4K 6rY86Jwu/p7D9QUd89HlqfITqHhL6wAOWaCa/Ep76hg2bQVKY31S/bltCDx6WHLC R7ZuHxcFJrseZ19bpCtJoOxIjFcxDgLXUEZeZllrnsXB+FjDC60YH4k5hhH+kYn0 tF+htKo//jodyJqhJ9N5Q1hJ3GDXdCCxwhKSCeUVij35SO8L7EgzBe2xW0+nLjhX HjdY9OZHKDa9MQM/X1MP8c7xOqvMzhvCAp1ur9qQaHesUQB4+lwqRpURlSrUChOJ 2w+/naFM4Jk1hR+HPi0GutDmVNvtCP33cOb/5JvIVa4r5BtsPzb0N/+8lcVRDrT/ M8v9CeJ6jlHGzhFJSnAw9Gm7uEJurAS+gVVVzV6EPDP55Z7O667sUDMUyzRvQnX9 /WE3iiNgTBwQ2aiwPRpmme/fYQLMwv1tdxu6xp1x/pAzzv3GKuw=3D =3D3+Rm -----END PGP SIGNATURE----- --===============5410845438763942744== Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQTziqJOuF8J+ZI8pJSb9qggYcy5IQUCanCulgAKCRCb9qggYcy5 IdEuAQCE4s6zlDZkJkoNof+DbShHlAI4X26sgegx/NxhHRnZJgD/eEvD5TpMISDF C1sZJZk5QFYYJn6KKuI/OAGM01lMUg8= =8wSC -----END PGP SIGNATURE----- --===============5410845438763942744==-- ------------=_1785769742-2808422-0--