From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/82368 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: POP3 UIDL - pop3-leave-mail-on-server Date: Fri, 05 Oct 2012 18:38:33 +0900 Organization: Emacsen advocacy group Message-ID: References: <87ipvwl1nx.wl%claudio.bley@gmail.com> <87hbbewr7o.wl%claudio.bley@gmail.com> <87ei6g0yph.wl%claudio.bley@gmail.com> <87lj0ne4og.fsf_-_@marauder.physik.uni-ulm.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1349430003 3758 80.91.229.3 (5 Oct 2012 09:40:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 5 Oct 2012 09:40:03 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M30634@lists.math.uh.edu Fri Oct 05 11:40:09 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TK4O8-00054F-61 for ding-account@gmane.org; Fri, 05 Oct 2012 11:40:08 +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 1TK4N4-0003cz-B3; Fri, 05 Oct 2012 04:39:02 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1TK4N3-0003cr-8b for ding@lists.math.uh.edu; Fri, 05 Oct 2012 04:39:01 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1TK4Ms-0005BO-8V for ding@lists.math.uh.edu; Fri, 05 Oct 2012 04:39:00 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1TK4Mq-00082V-Ek for ding@gnus.org; Fri, 05 Oct 2012 11:38:48 +0200 Original-Received: from localhost ([127.0.0.1]:43274) by orlando.hostforweb.net with smtp (Exim 4.77) (envelope-from ) id 1TK4Mg-0002jz-8f for ding@gnus.org; Fri, 05 Oct 2012 04:38:38 -0500 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.130006 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.6) Emacs/24.2.50 (i686-pc-cygwin) Cancel-Lock: sha1:tbwUhcDMePOsz0CdogdUi7fmV2I= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.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: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:82368 Archived-At: Katsumi Yamaoka wrote: > I started the test for a new UIDL support for pop3.el. [...] > This implementation is my original, not a copy of the XEmacs > version (the mail-source interface is borrowed from my hack made > in Semi-gnus), so it has no copyright porblem I believe. I'll > commit this to Gnus (not Emacs because of the feature freeze) > within a month. Committed to Ma Gnus. pop3.el users who don't want to leave mails on the server(s) have to do nothing, but if you're interested in the new feature, see: ,---- (info "(gnus)Mail Source Specifiers") | [...] | The following mail source types are available: | [...] | `:leave' | Non-`nil' if the mail is to be left on the POP server after | fetching. Mails once fetched will never be fetched again by | the UIDL control. Only the built-in `pop3-movemail' program | (the default) supports this keyword. | | If this is neither `nil' nor a number, all mails will be left | on the server. If this is a number, leave mails on the | server for this many days since you first checked new mails. | If this is `nil' (the default), mails will be deleted on the | server right after fetching. | | The `pop3-uidl-file' variable specifies the file to which the | UIDL data are locally stored. The default value is | `~/.pop3-uidl'. | [...] | Leave mails on the server for 14 days: | | (pop :server "my.pop.server" | :user "user-name" :password "secret" | :leave 14) | [...] `----