From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61409 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: pop3+ssl Date: Thu, 24 Nov 2005 10:19:02 +0900 Organization: Emacsen advocacy group Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1132795216 10714 80.91.229.2 (24 Nov 2005 01:20:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 24 Nov 2005 01:20:16 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+m9941@lists.math.uh.edu Thu Nov 24 02:20:07 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ef5mA-0004bK-FJ for ding-account@gmane.org; Thu, 24 Nov 2005 02:19:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1Ef5m7-0005Lr-00; Wed, 23 Nov 2005 19:19:47 -0600 Original-Received: from nas01.math.uh.edu ([129.7.128.39]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1Ef5lX-0005Ll-00 for ding@lists.math.uh.edu; Wed, 23 Nov 2005 19:19:11 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas01.math.uh.edu with esmtp (Exim 4.52) id 1Ef5lV-0006xH-My for ding@lists.math.uh.edu; Wed, 23 Nov 2005 19:19:11 -0600 Original-Received: from washington.hostforweb.net ([66.225.201.13]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Ef5lU-0000Mt-00 for ; Thu, 24 Nov 2005 02:19:08 +0100 Original-Received: from localhost ([127.0.0.1]:35584) by washington.hostforweb.net with esmtpa (Exim 4.52) id 1Ef5lf-0001mO-5O; Wed, 23 Nov 2005 19:19:19 -0600 Original-To: Dave Love X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:dy4awYsZOlVv68zfEI8g7EHJKnk= X-Hashcash: 1:20:051124:fx@gnu.org::a6ihT94Po+HHm22R:00000001QPr X-Hashcash: 1:20:051124:ding@gnus.org::+4YJC2OFN570NY1A:000089r8 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.4 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61409 Archived-At: --=-=-= >>>>> In Katsumi Yamaoka wrote: > In pop3-open-server, for what purpose is `while' used? If it is > intended to run cyclically, it seems to lack some conditions or > other. In addition, `pop3-open-server' should also recognize a string as a port number. See the `mail-sources' variable. I use "110" for it, which causes an error. --=-=-= Content-Type: text/x-patch Content-Disposition: inline --- pop3.el~ 2005-11-23 23:34:42 +0000 +++ pop3.el 2005-11-24 01:16:11 +0000 @@ -222,7 +222,8 @@ (setq process (cond ((or (eq pop3-stream-type 'ssl) - (and (not pop3-stream-type) (= port 995))) ; pop3s + (and (not pop3-stream-type) + (member port '(995 "995")))) ; pop3s (let ((process (open-tls-stream "POP" (current-buffer) mailhost port))) (when process --=-=-=--