From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 13 11:12:38 2015 Received: (at submit) by debbugs.gnu.org; 13 Jan 2015 16:12:38 +0000 Received: from localhost ([127.0.0.1]:55581 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YB458-00046q-7a for submit@debbugs.gnu.org; Tue, 13 Jan 2015 11:12:38 -0500 Received: from fely.am-1.org ([78.47.74.50]:49181) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YB455-00046i-TA for submit@debbugs.gnu.org; Tue, 13 Jan 2015 11:12:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Type:MIME-Version:Message-ID:Date:Sender:Subject:To:From; bh=SSIEHEJlB2vcfUKb1P0GpiHLMVi8D13vaZ/X2dpo/Ro=; b=SbmmTtL4t8AKQ6ml1d9ebgynWZFBL/LD6fBIhGOixWDwXTGy/siracogHZ3ZAOng+M0l5kqhK6NO3ZwyPJrzGHU5bVtKcf1pPSaiQZteqFLeOshcfx5lzXpD83Wo9n+Mt4Fbzl9VHwbewf7eAcz1G0rwC6Ejq37qW4vsg/tvYxQ=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YB453-0001CJ-6t for submit@debbugs.gnu.org; Tue, 13 Jan 2015 16:12:33 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YB44v-0003Os-U8 for submit@debbugs.gnu.org; Tue, 13 Jan 2015 23:12:26 +0700 From: Ivan Shmakov To: submit@debbugs.gnu.org Subject: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news Date: Tue, 13 Jan 2015 16:12:25 +0000 Message-ID: <874mruy80m.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Package: emacs Tags: patch As of 88bc8332eb14 (2015-01-07 13:51:41 +0000), nntp-open-server appears to call nnoo-change-server without switching to nntp-server-buffer first, thus installing the local variables in the whatever buffer current at the time it=E2=80=99s called. One of these variables is nntp-port-number, which means that when open-protocol-stream is called in the proper buffer later, it gets 0 for the port number to connect, and thus fails. This affects url-retrieve-synchronously; consider, e. g.: (let ((url-news-server "news.gmane.org")) (url-retrieve-synchronously "news:87y4p9y2cq.fsf@violet.siamics.net")) Please thus consider the patch MIMEd. * lisp/gnus/nntp.el (nntp-open-server): Switch to nntp-server-buffer temporarily while calling nnoo-change-server. To note is that to get url-retrieve-synchronously working in this case, I had to comment out the :starttls-function argument to open-protocol-stream in nntp-open-connection (an issue I haven=E2=80=99t investigated much as of yet, but which may be related to the use of a self-signed certificate), /and/ define the default port for the =E2=80=98news=E2=80=99 URI scheme, like the (untested) patch = MIMEd. --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A --=-=-= Content-Type: text/diff Content-Disposition: inline --- a/lisp/gnus/nntp.el 2015-01-01 22:26:41 +0000 +++ b/lisp/gnus/nntp.el @@ -1066,7 +1066,8 @@ deffoo nntp-open-server (server &optional defs connectionless) (setq defs (cons (list 'nntp-port-number (car defs)) (cdr defs)))) (unless (assq 'nntp-address defs) (setq defs (append defs (list (list 'nntp-address server))))) - (nnoo-change-server 'nntp server defs) + (with-current-buffer nntp-server-buffer + (nnoo-change-server 'nntp server defs)) (if connectionless t (or (nntp-find-connection nntp-server-buffer) --=-=-= Content-Type: text/diff Content-Disposition: inline --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el 2015-01-13 15:48:37 +0000 @@ -1282,11 +1283,12 @@ defun nntp-open-connection (buffer) :end-of-command "^\\([2345]\\|[.]\\).*\n" :capability-command "HELP\r\n" :success "^3" - :starttls-function - (lambda (capabilities) - (if (not (string-match "STARTTLS" capabilities)) - nil - "STARTTLS\r\n"))) + ; :starttls-function + ; (lambda (capabilities) + ; (if (not (string-match "STARTTLS" capabilities)) + ; nil + ; "STARTTLS\r\n")) + ) (funcall nntp-open-connection-function pbuffer))) (error (nnheader-report 'nntp ">>> %s" err)) --=-=-= Content-Type: text/diff Content-Disposition: inline --- a/lisp/url/url-news.el 2015-01-01 22:26:41 +0000 +++ b/lisp/url/url-news.el 2015-01-13 16:05:25 +0000 @@ -28,6 +28,9 @@ (autoload 'url-warn "url") (autoload 'gnus-group-read-ephemeral-group "gnus-group") +(defconst url-news-default-port 119 "Default NNTP port.") +(defconst url-snews-default-port 563 "Default NNTPS port.") + ;; Unused. ;;; (defgroup url-news nil ;;; "News related options." --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 13 12:28:51 2015 Received: (at 19583) by debbugs.gnu.org; 13 Jan 2015 17:28:51 +0000 Received: from localhost ([127.0.0.1]:55682 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YB5Gt-00064i-B3 for submit@debbugs.gnu.org; Tue, 13 Jan 2015 12:28:51 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:58792) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YB5Go-00064W-0y for 19583@debbugs.gnu.org; Tue, 13 Jan 2015 12:28:49 -0500 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1YB5GP-00020M-KN; Tue, 13 Jan 2015 18:28:21 +0100 From: Lars Magne Ingebrigtsen To: Ivan Shmakov Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAFVBMVEWafVUJBwhbSDcNCgwa FRUSDxArIx7ysEaIAAACT0lEQVQ4jU1TwXIbIQylHHKnTnPGqs19i/G548CeMwH57MG7+v9PqCR2 k8qZYfMeT3pIYGYiAG++wwIEosXMmYg6fAejlHMZxP+RObAmJkbMii65FESs7mD4O/MnNiaLfNUa p+ickXyIBVNCTFhjjIcYJ1HkoUCGGHCOlyrEohWUcIeohNAHI7DUw5HaTfHglFi0KFO6UZixCFHU DWqGDXbRNHHOisol3B6T+8UEiltUpzFq/uRcMmV3VZMeWexeYmxm60gVPLIzFys2xCwEZ1PDMUXh It7vOZstE+9vDDV2MbnUykaIqFGKtZXEtiN+EeyXE6faKueS4yQhcCO4xW0ZrZzQjERavMlUsCIf 9X1X7CfUObGkpa3teRtIW4So7nrdiaKORcV/acLLTjRJkiSb9ux1J0r76mNNaT7XvVdFa1S5DYkr 5cp2iXZcTzBGFZPeK57VqgUmvQ/sFnGrscrQ5+fz9syLu/35u2a9V4uYSrGfoFM4u5uHdVeQTOMz +BDAn/rCelXMc1jY7L225zgI65XIZEvTLh24MnNsZBBgUScucV17vWRW8KPo3p5VIPFhTCrzYgLx AwQ44X2dA73H9CH/+rA9SA/BAzECp4c+VWuUZ8ZbsAaMt0YWCW9AUPDWDrUSVgjr5XUzAbJ4gJGK YS+AvPGR2lKXfN6OPV6kACLnUqJhhBl4qNK/gN12qUR+tntqgU43WGdOBh2sfYTnTyJvA0L4fPn9 1vlMPXTo4XGkmbeY9QYP+3pi0BA8Ah97oTkcf8DqyVo6vvX+D6Xl+OI/mE6FAAAAAElFTkSuQmCC X-Now-Playing: Josef K's _The Only Fun in Town_: "Terry's Show Lies" X-Hashcash: 1:23:150113:19583@debbugs.gnu.org::rkRIH5ECRsZK7N+a:00000000000000000000000000000000000000007Md3 X-Hashcash: 1:23:150113:ivan@siamics.net::woOqGiran8mUbYgF:0I116 Date: Tue, 13 Jan 2015 18:28:21 +0100 In-Reply-To: <874mruy80m.fsf@violet.siamics.net> (Ivan Shmakov's message of "Tue, 13 Jan 2015 16:12:25 +0000") Message-ID: User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1YB5GP-00020M-KN X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1421774901.71658@jxtAkMhyANwDXKc3v+RViw X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 Cc: 19583@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.0 (/) Ivan Shmakov writes: > As of 88bc8332eb14 (2015-01-07 13:51:41 +0000), nntp-open-server > appears to call nnoo-change-server without switching to > nntp-server-buffer first, thus installing the local variables in > the whatever buffer current at the time it=92s called. One of > these variables is nntp-port-number, which means that when > open-protocol-stream is called in the proper buffer later, it > gets 0 for the port number to connect, and thus fails. > > This affects url-retrieve-synchronously; consider, e. g.: Since this hasn't worked in a year, this suggests that `url-news' isn't used any more. I suggest removing it. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 13 12:50:39 2015 Received: (at 19583) by debbugs.gnu.org; 13 Jan 2015 17:50:39 +0000 Received: from localhost ([127.0.0.1]:55704 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YB5bu-0006dV-Qo for submit@debbugs.gnu.org; Tue, 13 Jan 2015 12:50:38 -0500 Received: from fely.am-1.org ([78.47.74.50]:49198) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YB5bo-0006dG-1X for 19583@debbugs.gnu.org; Tue, 13 Jan 2015 12:50:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=ypy39k5AGqfeHS3IMhStKC+03H4k7FQ5zujR/qSktvk=; b=J7pnfxtTUmiGGqMtOI9FqphGhghH9EIF4kw/qhfViW6ecf0Zxj0Eb1+d7PvuTxg5ZsYY138/nFWmGGNB3DXYNFHAX0xdLOYzLwQwSiKTZIXLO4DeKYilFZGdOmDkSt4v+HHakMWqw0ZAnyP4u+LirIId+mVNEkKIax1k1udW1C0=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YB5bk-0001vI-D2 for 19583@debbugs.gnu.org; Tue, 13 Jan 2015 17:50:24 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YB5bd-0003fz-7G for 19583@debbugs.gnu.org; Wed, 14 Jan 2015 00:50:17 +0700 From: Ivan Shmakov To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> Mail-Followup-To: 19583@debbugs.gnu.org Date: Tue, 13 Jan 2015 17:50:16 +0000 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Tue, 13 Jan 2015 18:28:21 +0100") Message-ID: <87wq4qwox3.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 19583 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.7 (/) >>>>> Lars Magne Ingebrigtsen writes: >>>>> Ivan Shmakov writes: >> As of 88bc8332eb14 (2015-01-07 13:51:41 +0000), nntp-open-server >> appears to call nnoo-change-server without switching to >> nntp-server-buffer first, thus installing the local variables in the >> whatever buffer current at the time it=E2=80=99s called. [=E2=80=A6] >> This affects url-retrieve-synchronously; consider, e. g.: > Since this hasn't worked in a year, this suggests that `url-news' > isn't used any more. I suggest removing it. Does the above mean that nntp-open-server is only used by =E2=80=98url-news=E2=80=99 (and thus could be removed once it=E2=80=99s go= ne), /or/ does that mean that =E2=80=98url-news=E2=80=99 fails to call =E2=80=98nntp-open= -server=E2=80=99 properly (in which case, what=E2=80=99s the correct way to call it)? (My understanding of the nntp-open-server code is that it /does/ indeed have a bug, which is somehow /not/ triggered by Gnus, but /may/ very well be triggered by just whatever other code that=E2=80=99d happen to call it.) Incidentally, there=E2=80=99s a reason for me to support the removal of url-news.el from Emacs proper, as (I guess) it would make it a bit easier for me to offer it as a separate package. --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 14 00:26:19 2015 Received: (at 19583) by debbugs.gnu.org; 14 Feb 2015 05:26:19 +0000 Received: from localhost ([127.0.0.1]:42565 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMVFC-0007NT-Fk for submit@debbugs.gnu.org; Sat, 14 Feb 2015 00:26:18 -0500 Received: from smtp.syd.comcen.com.au ([203.23.236.77]:3705) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMVF8-0007NJ-EL for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 00:26:16 -0500 Received: from building.gnus.org ([27.96.197.126]) by smtp.syd.comcen.com.au (8.13.4/8.12.9) with ESMTP id t1E5OVpO042497; Sat, 14 Feb 2015 16:24:32 +1100 (EST) From: Lars Ingebrigtsen To: Ivan Shmakov Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> Date: Sat, 14 Feb 2015 16:24:26 +1100 In-Reply-To: <874mruy80m.fsf@violet.siamics.net> (Ivan Shmakov's message of "Tue, 13 Jan 2015 16:12:25 +0000") Message-ID: <87iof5gj5h.fsf@building.gnus.org> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-comcen-MailScanner-Information: Please contact the ISP for more information X-comcen-MailScanner: Found to be clean X-comcen-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=0.119, required 4, AWL 0.02, BAYES_50 0.00, RDNS_NONE 0.10) X-comcen-MailScanner-From: larsi@gnus.org X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 Cc: 19583@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.0 (/) Ivan Shmakov writes: > * lisp/gnus/nntp.el (nntp-open-server): Switch to > nntp-server-buffer temporarily while calling nnoo-change-server. Thanks; applied. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 14 00:32:46 2015 Received: (at 19583) by debbugs.gnu.org; 14 Feb 2015 05:32:47 +0000 Received: from localhost ([127.0.0.1]:42575 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMVLS-0000Tl-Ar for submit@debbugs.gnu.org; Sat, 14 Feb 2015 00:32:46 -0500 Received: from smtp.syd.comcen.com.au ([203.23.236.77]:1916) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMVLQ-0000Tc-0M for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 00:32:44 -0500 Received: from building.gnus.org ([27.96.197.126]) by smtp.syd.comcen.com.au (8.13.4/8.12.9) with ESMTP id t1E5VBVk043532; Sat, 14 Feb 2015 16:31:11 +1100 (EST) From: Lars Ingebrigtsen To: Ivan Shmakov Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> Date: Sat, 14 Feb 2015 16:31:06 +1100 In-Reply-To: <874mruy80m.fsf@violet.siamics.net> (Ivan Shmakov's message of "Tue, 13 Jan 2015 16:12:25 +0000") Message-ID: <87egptgiud.fsf@building.gnus.org> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-comcen-MailScanner-Information: Please contact the ISP for more information X-comcen-MailScanner: Found to be clean X-comcen-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=0.118, required 4, AWL 0.02, BAYES_50 0.00, RDNS_NONE 0.10) X-comcen-MailScanner-From: larsi@gnus.org X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 Cc: 19583@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.0 (/) Ivan Shmakov writes: > This affects url-retrieve-synchronously; consider, e. g.: > > (let ((url-news-server "news.gmane.org")) > (url-retrieve-synchronously "news:87y4p9y2cq.fsf@violet.siamics.net")) > > Please thus consider the patch MIMEd. I reverted the patch. With it or without it, the result was the same: URL wasn't able to retrieve anything but just returned the HTML below. So there's a bigger problem in this area than just this. The TLS stuff you point to may be an issue, but I'm not sure how. Content-type: text/html Error

Error requesting article...

The status message returned by the NNTP server was:


Couldn't open connection to news.gmane.org.

If you feel this is an error, M-x report-emacs-bug RET.

-- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 14 02:06:16 2015 Received: (at 19583) by debbugs.gnu.org; 14 Feb 2015 07:06:16 +0000 Received: from localhost ([127.0.0.1]:42632 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMWns-0005YU-5e for submit@debbugs.gnu.org; Sat, 14 Feb 2015 02:06:15 -0500 Received: from fely.am-1.org ([78.47.74.50]:43660) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMWnn-0005YJ-44 for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 02:06:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=qDVy4pm29PD3ZAq14k7CoIHzKdKrYDWX+fI5SGs+zq0=; b=qIs+XCyQqjSKRZQj36uFg9oBT1299FVK9yoR7S6I89xmhorbanzl+2dyMowNeGwuKc8n8m58WpP3wfCSuePLkGV5RDkBcP4RACxkMDS/CeQFIsNpcYSqSwPh/wLWFZ8vnzDFWCKYwNArVDGcYIgnmOMTi7HlNGzSmitgckTJkyU=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YMWnm-0006s8-Cf for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 07:06:06 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YMWnf-0000rE-Rw for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 14:05:59 +0700 From: Ivan Shmakov To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> Mail-Followup-To: 19583@debbugs.gnu.org Date: Sat, 14 Feb 2015 07:05:59 +0000 In-Reply-To: <87egptgiud.fsf@building.gnus.org> (Lars Ingebrigtsen's message of "Sat, 14 Feb 2015 16:31:06 +1100") Message-ID: <87r3ttc6qw.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 19583 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.7 (/) >>>>> Lars Ingebrigtsen writes: >>>>> Ivan Shmakov writes: >> This affects url-retrieve-synchronously; consider, e. g.: >> (let ((url-news-server "news.gmane.org")) >> (url-retrieve-synchronously "news:87y4p9y2cq.fsf@violet.siamics.net")) >> Please thus consider the patch MIMEd. > I reverted the patch. > With it or without it, the result was the same: URL wasn't able to > retrieve anything but just returned the HTML below. > So there's a bigger problem in this area than just this. The TLS > stuff you point to may be an issue, but I'm not sure how. That=E2=80=99s simple: the TLS stuff there is ought to reject self-signed certificates outright, and news.gmane.org just happens to use one. My guess was that setting nntp-open-connection-function to 'nntp-open-plain-stream should overcome this issue, but it doesn=E2=80=99t. Apparently, the variable gets reset to its =E2=80=9CUse = TLS if supported=E2=80=9D default somewhere in the code (when the server is opened?), but I have little clue as to where that may happen, or where the default is stored, or how do I find it out. This same issue affects Gnus, but is easy to overcome by providing a suitable value to nntp-open-connection-function via the respective select method. [=E2=80=A6] --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 14 07:28:11 2015 Received: (at 19583) by debbugs.gnu.org; 14 Feb 2015 12:28:11 +0000 Received: from localhost ([127.0.0.1]:42766 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMbpS-0004Zw-OY for submit@debbugs.gnu.org; Sat, 14 Feb 2015 07:28:11 -0500 Received: from smtp.syd.comcen.com.au ([203.23.236.77]:3131) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMbpM-0004ZQ-B3 for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 07:28:09 -0500 Received: from building.gnus.org ([27.96.197.126]) by smtp.syd.comcen.com.au (8.13.4/8.12.9) with ESMTP id t1ECQAMf018051 for <19583@debbugs.gnu.org>; Sat, 14 Feb 2015 23:26:12 +1100 (EST) From: Lars Ingebrigtsen To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> <87r3ttc6qw.fsf@violet.siamics.net> Date: Sat, 14 Feb 2015 23:26:05 +1100 In-Reply-To: <87r3ttc6qw.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sat, 14 Feb 2015 07:05:59 +0000") Message-ID: <877fvkfzmq.fsf@building.gnus.org> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-comcen-MailScanner-Information: Please contact the ISP for more information X-comcen-MailScanner: Found to be clean X-comcen-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=0.118, required 4, AWL 0.02, BAYES_50 0.00, RDNS_NONE 0.10) X-comcen-MailScanner-From: larsi@gnus.org X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.0 (/) Ivan Shmakov writes: > That=92s simple: the TLS stuff there is ought to reject > self-signed certificates outright, and news.gmane.org just > happens to use one. No certificates are rejected; they're normally all prompted for by the network security manager. So the question is why that isn't happening here, if indeed that's the problem. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 14 08:38:08 2015 Received: (at 19583) by debbugs.gnu.org; 14 Feb 2015 13:38:09 +0000 Received: from localhost ([127.0.0.1]:42821 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMcv6-0007Z4-VO for submit@debbugs.gnu.org; Sat, 14 Feb 2015 08:38:08 -0500 Received: from fely.am-1.org ([78.47.74.50]:43772) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMcv1-0007YQ-4w for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 08:38:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=jxZ87ZwouqeGeT/tRmu96zEoa8Q2TtrQJS65CvWAWbY=; b=EtTvvwCStHkasf3daywzcoK5Zxrvx5PRaFufqnBbjzNZgGDiQ98uEAnJkhxiWMEoTfwf9uVfAQ8SBOxJZSl4IpRgPZxjrXz03BomKfk9lSHM2hDpH0MF+2Z1AJFlFYyzVeQ5OOlPTMl5ZAKHmC+zock5EqYlXOwMkGfHLWHVlEw=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YMcv0-0002G6-Gx for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 13:37:58 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YMcut-00025K-W3 for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 20:37:52 +0700 From: Ivan Shmakov To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> <87r3ttc6qw.fsf@violet.siamics.net> <877fvkfzmq.fsf@building.gnus.org> Mail-Followup-To: 19583@debbugs.gnu.org Date: Sat, 14 Feb 2015 13:37:51 +0000 In-Reply-To: <877fvkfzmq.fsf@building.gnus.org> (Lars Ingebrigtsen's message of "Sat, 14 Feb 2015 23:26:05 +1100") Message-ID: <87sie8bols.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 19583 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.7 (/) >>>>> Lars Ingebrigtsen writes: >>>>> Ivan Shmakov writes: >> That=E2=80=99s simple: the TLS stuff there is ought to reject self-sign= ed >> certificates outright, and news.gmane.org just happens to use one. > No certificates are rejected; they're normally all prompted for by > the network security manager. So the question is why that isn't > happening here, if indeed that's the problem. It seems so; cf.: (with-temp-buffer (kill-buffer " *nntpd*") (setq nntp-open-connection-function 'nntp-open-plain-stream) (nntp-open-server "news.gmane.org" '((nntp-port-number 119)))) # (with-temp-buffer (kill-buffer " *nntpd*") (setq nntp-open-connection-function 'nntp-open-network-stream) (nntp-open-server "news.gmane.org" '((nntp-port-number 119)))) nil --=20 FSF associate member #7257 np. The Talisman =E2=80=94 Iron Maiden =E2=80= =A6 B6A0 230E 334A From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 14 23:46:05 2015 Received: (at 19583) by debbugs.gnu.org; 15 Feb 2015 04:46:06 +0000 Received: from localhost ([127.0.0.1]:44252 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMr5p-0002t2-KE for submit@debbugs.gnu.org; Sat, 14 Feb 2015 23:46:05 -0500 Received: from smtp.syd.comcen.com.au ([203.23.236.77]:4182) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMr5m-0002sf-Ow for 19583@debbugs.gnu.org; Sat, 14 Feb 2015 23:46:04 -0500 Received: from building.gnus.org ([27.96.197.126]) by smtp.syd.comcen.com.au (8.13.4/8.12.9) with ESMTP id t1F4jqQD095708 for <19583@debbugs.gnu.org>; Sun, 15 Feb 2015 15:45:53 +1100 (EST) From: Lars Ingebrigtsen To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> <87r3ttc6qw.fsf@violet.siamics.net> <877fvkfzmq.fsf@building.gnus.org> <87sie8bols.fsf@violet.siamics.net> Date: Sun, 15 Feb 2015 15:45:48 +1100 In-Reply-To: <87sie8bols.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sat, 14 Feb 2015 13:37:51 +0000") Message-ID: <87oaovbx4z.fsf@building.gnus.org> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-comcen-MailScanner-Information: Please contact the ISP for more information X-comcen-MailScanner: Found to be clean X-comcen-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=0.118, required 4, AWL 0.02, BAYES_50 0.00, RDNS_NONE 0.10) X-comcen-MailScanner-From: larsi@gnus.org X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.0 (/) Ivan Shmakov writes: > (with-temp-buffer > (kill-buffer " *nntpd*") > (setq nntp-open-connection-function 'nntp-open-network-stream) > (nntp-open-server "news.gmane.org" > '((nntp-port-number 119)))) > nil Works for me in emacs -Q: (with-temp-buffer (require 'nntp) (nntp-open-server "news.gmane.org")) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 15 00:42:58 2015 Received: (at 19583) by debbugs.gnu.org; 15 Feb 2015 05:42:58 +0000 Received: from localhost ([127.0.0.1]:44262 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMryo-00048O-QT for submit@debbugs.gnu.org; Sun, 15 Feb 2015 00:42:58 -0500 Received: from fely.am-1.org ([78.47.74.50]:43909) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YMryj-000489-Kx for 19583@debbugs.gnu.org; Sun, 15 Feb 2015 00:42:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=9VS0MEIB7enQk/auHNg+0Kcl4wu2lqf1r5oIw1s2H0w=; b=a5Qo6uMDa2NO6nMrqs2QXkOibU2zT0PtyMOs6jXzpVqheyrdZDsbXmS9FEg0o5Sjf/BWDhsGiYKhog4kM9D5i/a2DyeJ7j3AjEW5wiC+QZFn+ekyU8cRfo6uG5U0rcC5Pi/f4lRyr1DitBdsbYu35ZJxYIeRL4zwbReUQViJiNM=; Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YMryf-0002bF-54 for 19583@debbugs.gnu.org; Sun, 15 Feb 2015 05:42:45 +0000 Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YMryY-0004G9-5i for 19583@debbugs.gnu.org; Sun, 15 Feb 2015 12:42:38 +0700 From: Ivan Shmakov To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> <87r3ttc6qw.fsf@violet.siamics.net> <877fvkfzmq.fsf@building.gnus.org> <87sie8bols.fsf@violet.siamics.net> <87oaovbx4z.fsf@building.gnus.org> Mail-Followup-To: 19583@debbugs.gnu.org Date: Sun, 15 Feb 2015 05:42:37 +0000 In-Reply-To: <87oaovbx4z.fsf@building.gnus.org> (Lars Ingebrigtsen's message of "Sun, 15 Feb 2015 15:45:48 +1100") Message-ID: <87h9unafxu.fsf@violet.siamics.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 19583 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: 0.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable >>>>> Lars Ingebrigtsen writes: >>>>> Ivan Shmakov writes: >>>>> Lars Ingebrigtsen writes: >>> No certificates are rejected; they're normally all prompted for by >>> the network security manager. So the question is why that isn't >>> happening here, if indeed that's the problem. >> It seems so; cf.: >> (with-temp-buffer (kill-buffer " *nntpd*") >> (setq nntp-open-connection-function 'nntp-open-network-stream) >> (nntp-open-server "news.gmane.org" '((nntp-port-number 119)))) >> nil > Works for me in emacs -Q: > (with-temp-buffer > (require 'nntp) > (nntp-open-server "news.gmane.org")) Yet still url-retrieve fails for news: URIs referencing this same server? Also, AIUI, $ emacs -Q doesn=E2=80=99t prevent the use of nsm-settings-file. Could you please try the above with that variable pointing to some non-existent file? BTW, I don=E2=80=99t seem to understand which nntp- functions do expect to be called from the server buffer. For one thing, nntp-open-connection uses the nntp- variables intended (unless I be mistaken) to be local to the server buffer, yet I fail to see where the buffer gets switched. Perhaps this revised patch MIMEd makes more sense. --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A --=-=-= Content-Type: text/diff Content-Disposition: inline --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -1066,11 +1066,12 @@ deffoo nntp-open-server (server &optional defs connectionless) (setq defs (cons (list 'nntp-port-number (car defs)) (cdr defs)))) (unless (assq 'nntp-address defs) (setq defs (append defs (list (list 'nntp-address server))))) - (nnoo-change-server 'nntp server defs) - (if connectionless - t - (or (nntp-find-connection nntp-server-buffer) - (nntp-open-connection nntp-server-buffer))))) + (with-current-buffer nntp-server-buffer + (nnoo-change-server 'nntp server defs) + (if connectionless + t + (or (nntp-find-connection nntp-server-buffer) + (nntp-open-connection nntp-server-buffer)))))) (deffoo nntp-close-server (&optional server) (nntp-possibly-change-group nil server t) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 23 06:21:39 2016 Received: (at 19583) by debbugs.gnu.org; 23 Feb 2016 11:21:39 +0000 Received: from localhost ([127.0.0.1]:39322 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYB2A-0003HP-SC for submit@debbugs.gnu.org; Tue, 23 Feb 2016 06:21:39 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:33711) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYB29-0003HI-6e for 19583@debbugs.gnu.org; Tue, 23 Feb 2016 06:21:37 -0500 Received: from cpe-60-225-211-161.nsw.bigpond.net.au ([60.225.211.161] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aYB1h-0004cB-Eg for 19583@debbugs.gnu.org; Tue, 23 Feb 2016 12:21:11 +0100 From: Lars Ingebrigtsen To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> <87r3ttc6qw.fsf@violet.siamics.net> <877fvkfzmq.fsf@building.gnus.org> <87sie8bols.fsf@violet.siamics.net> <87oaovbx4z.fsf@building.gnus.org> <87h9unafxu.fsf@violet.siamics.net> Date: Tue, 23 Feb 2016 22:21:04 +1100 In-Reply-To: <87h9unafxu.fsf@violet.siamics.net> (Ivan Shmakov's message of "Sun, 15 Feb 2015 05:42:37 +0000") Message-ID: <87mvqrr7tr.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1aYB1h-0004cB-Eg X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1456831274.12099@SQgZllJlY7AL+e7LoAbhag X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 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: 0.0 (/) Ivan Shmakov writes: > BTW, I don=92t seem to understand which nntp- functions do expect > to be called from the server buffer. For one thing, > nntp-open-connection uses the nntp- variables intended (unless I > be mistaken) to be local to the server buffer, yet I fail to see > where the buffer gets switched. I can't really see any local variables in the " *nntpd*" buffer. There are plenty of them in the " *server ...*" buffer, though. So I can't really see how this would make any difference: - (nnoo-change-server 'nntp server defs) - (if connectionless - t - (or (nntp-find-connection nntp-server-buffer) - (nntp-open-connection nntp-server-buffer))))) + (with-current-buffer nntp-server-buffer + (nnoo-change-server 'nntp server defs) + (if connectionless + t + (or (nntp-find-connection nntp-server-buffer) + (nntp-open-connection nntp-server-buffer)))))) nntp-server-buffer =3D> # Are you still seeing this problem? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 25 16:14:35 2017 Received: (at 19583) by debbugs.gnu.org; 25 Jan 2017 21:14:35 +0000 Received: from localhost ([127.0.0.1]:43674 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWUtj-0002St-Hg for submit@debbugs.gnu.org; Wed, 25 Jan 2017 16:14:35 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:46454) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWUte-0002Sg-Ta for 19583@debbugs.gnu.org; Wed, 25 Jan 2017 16:14:30 -0500 Received: from 2.150.50.220.tmi.telenormobil.no ([2.150.50.220] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1cWUta-0000VE-Ek for 19583@debbugs.gnu.org; Wed, 25 Jan 2017 22:14:26 +0100 From: Lars Ingebrigtsen To: 19583@debbugs.gnu.org Subject: Re: bug#19583: nntp-open-server: wrong buffer for nnoo-change-server; breaks url-news In-Reply-To: <87mvqrr7tr.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 23 Feb 2016 22:21:04 +1100") Date: Wed, 25 Jan 2017 22:11:02 +0100 Message-ID: <874m0metg9.fsf@gnus.org> References: <874mruy80m.fsf@violet.siamics.net> <87egptgiud.fsf@building.gnus.org> <87r3ttc6qw.fsf@violet.siamics.net> <877fvkfzmq.fsf@building.gnus.org> <87sie8bols.fsf@violet.siamics.net> <87oaovbx4z.fsf@building.gnus.org> <87h9unafxu.fsf@violet.siamics.net> <87mvqrr7tr.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19583 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: 0.0 (/) Lars Ingebrigtsen writes: > nntp-server-buffer => # > > Are you still seeing this problem? Apparently no response in almost a year, so I'm closing this bug report. If it's still a problem, please reopen. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 25 16:14:37 2017 Received: (at control) by debbugs.gnu.org; 25 Jan 2017 21:14:37 +0000 Received: from localhost ([127.0.0.1]:43677 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWUtp-0002TD-7E for submit@debbugs.gnu.org; Wed, 25 Jan 2017 16:14:37 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:46460) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWUtm-0002Sx-S2 for control@debbugs.gnu.org; Wed, 25 Jan 2017 16:14:35 -0500 Received: from 2.150.50.220.tmi.telenormobil.no ([2.150.50.220] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1cWUtk-00019E-Lq for control@debbugs.gnu.org; Wed, 25 Jan 2017 22:14:34 +0100 From: Lars Ingebrigtsen To: control@debbugs.gnu.org Subject: control message for bug #19583 Message-ID: <8737g6etg7.fsf@totally-fudged-out-message-id> Date: Wed, 25 Jan 2017 22:14:26 +0100 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control 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: 0.0 (/) close 19583 From unknown Fri Jun 20 20:09:45 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, 23 Feb 2017 12:24:07 +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