From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61408 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: pop3+ssl Date: Thu, 24 Nov 2005 09:21:45 +0900 Organization: Emacsen advocacy group Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1132792239 4242 80.91.229.2 (24 Nov 2005 00:30:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 24 Nov 2005 00:30:39 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+m9940@lists.math.uh.edu Thu Nov 24 01:30:35 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ef4zL-0006kL-Ku for ding-account@gmane.org; Thu, 24 Nov 2005 01:29:24 +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 1Ef4zC-0005GR-00; Wed, 23 Nov 2005 18:29:14 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1Ef4sB-0005GJ-00 for ding@lists.math.uh.edu; Wed, 23 Nov 2005 18:21:59 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1Ef4s8-00043L-SF for ding@lists.math.uh.edu; Wed, 23 Nov 2005 18:21:59 -0600 Original-Received: from washington.hostforweb.net ([66.225.201.13]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Ef4s3-0007nS-00 for ; Thu, 24 Nov 2005 01:21:51 +0100 Original-Received: from localhost ([127.0.0.1]:59671) by washington.hostforweb.net with esmtpa (Exim 4.52) id 1Ef4sC-0000xa-OE; Wed, 23 Nov 2005 18:22:01 -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:3poogoNBh+9FcyXyrKPe9GZVjoU= X-Hashcash: 1:20:051124:fx@gnu.org::zrYB4qEitGzqZ4FQ:00000000zZ5 X-Hashcash: 1:20:051124:ding@gnus.org::9D4rThcp43p+enrn:00005Tun 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.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61408 Archived-At: >>>>> In Dave Love wrote: > Date: Thursday, November 24, 2005 @ 00:01:30 > Author: cvs > Path: /usr/local/cvsroot/gnus/lisp > Modified: pop3.el > (pop3-authentication-scheme): Clarify doc. > (open-tls-stream, starttls-open-stream): Autoload. > (pop3-stream-type): New. > (pop3-open-server): Use it. 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. ;; There's a load of info printed that needs deleting. -> (while (when (memq (process-status process) '(open run)) (pop3-accept-process-output process) (goto-char (point-max)) (forward-line -1) (if (looking-at "\\+OK") (delete-region (point-min) (point)) (pop3-quit process) (error "POP SSL connexion failed")))) I cannot try it practically since I have no pop3 server which supports ssl, though.