From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/79918 Path: news.gmane.org!not-for-mail From: Denys Duchier Newsgroups: gmane.emacs.gnus.general Subject: Re: bug with pop3/ssl and capabilities Date: Mon, 12 Sep 2011 14:32:00 +0200 Message-ID: <87sjo2ym9r.fsf@univ-orleans.fr> References: <87hb4ypqru.fsf@univ-orleans.fr> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1315830803 16401 80.91.229.12 (12 Sep 2011 12:33:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 12 Sep 2011 12:33:23 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M28212@lists.math.uh.edu Mon Sep 12 14:33:19 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1R35hN-0006FJ-Uc for ding-account@gmane.org; Mon, 12 Sep 2011 14:33:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1R35gS-0000e2-Pz; Mon, 12 Sep 2011 07:32:20 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1R35gR-0000dt-Ly for ding@lists.math.uh.edu; Mon, 12 Sep 2011 07:32:19 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1R35gN-0004Dt-B2 for ding@lists.math.uh.edu; Mon, 12 Sep 2011 07:32:19 -0500 Original-Received: from sucre.univ-orleans.fr ([194.167.30.94]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1R35gK-0000vf-A4 for ding@gnus.org; Mon, 12 Sep 2011 14:32:12 +0200 Original-Received: from localhost (localhost [127.0.0.1]) by sucre.univ-orleans.fr (Postfix) with ESMTP id 0BBD7943B7 for ; Mon, 12 Sep 2011 14:32:11 +0200 (CEST) Original-Received: from sucre.univ-orleans.fr ([127.0.0.1]) by localhost (sucre.univ-orleans.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oAojNJlopiYc for ; Mon, 12 Sep 2011 14:32:10 +0200 (CEST) Original-Received: from smtps.univ-orleans.fr (smtps.univ-orleans.fr [194.167.30.152]) by sucre.univ-orleans.fr (Postfix) with ESMTP id E54A7943B5 for ; Mon, 12 Sep 2011 14:32:10 +0200 (CEST) Original-Received: from tiny.univ-orleans.fr (unknown [192.168.80.66]) by smtps.univ-orleans.fr (Postfix) with ESMTP id 29C4036E60 for ; Mon, 12 Sep 2011 14:32:03 +0200 (CEST) In-Reply-To: (Lars Magne Ingebrigtsen's message of "Sat, 10 Sep 2011 23:32:57 +0200") User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) X-Spam-Score: -2.4 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:79918 Archived-At: Lars Magne Ingebrigtsen writes: > Denys Duchier writes: > >> I am using gnus (from the git repository) in emacs 24 (from the bzr >> repository). my mail source is a pop3 server on port 995 (i.e. :stream >> ssl) which supports the CAPA command. yet, opening the server gets >> stuck unless, in pop3-open-server, I comment out the line: >> >> :capability-command "CAPA\r\n" >> >> when it is stuck and I ^G out of it, the " trace of POP session to ..." >> buffer contains: >> >> +OK Dovecot ready. >> +OK >> CAPA >> TOP >> UIDL >> RESP-CODES >> PIPELINING >> USER >> SASL PLAIN >> . > > Does your Dovecot not include \r on the lines? it does. however, looking at the code again, I realized that it is in fact: :end-of-command "^\\(-ERR\\|+OK \\).*\n" which must be replaced by: :end-of-command "^\\(-ERR\\|+OK\\).*\n" I tried it, and it worked with capabilities back on. Cheers, --Denys