From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/4284 Path: main.gmane.org!not-for-mail From: mdb@cdc.noaa.gov (Mark Borges) Newsgroups: gmane.emacs.gnus.general Subject: Re: Value for gnus-auto-expirable-newsgroups Date: Tue, 5 Dec 1995 17:31:25 -0700 Organization: CIRES, University of Colorado Message-ID: <9512060031.AA23290@charney.cdc.noaa.gov> References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035145052 29082 80.91.224.250 (20 Oct 2002 20:17:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:17:32 +0000 (UTC) Cc: ding@ifi.uio.no Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by miranova.com (8.6.11/8.6.9) with ESMTP id RAA03769 for ; Tue, 5 Dec 1995 17:24:22 -0800 Original-Received: from cdc.noaa.gov (lorenz.Colorado.EDU [128.138.218.1]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Wed, 6 Dec 1995 01:31:28 +0100 Original-Received: from charney by cdc.noaa.gov (5.0/SMI-SVR4) id AA05813; Tue, 5 Dec 1995 17:31:24 -0700 Original-Received: by charney (5.0) id AA23290; Tue, 5 Dec 1995 17:31:25 -0700 Original-To: Manoj Srivastava In-Reply-To: Manoj Srivastava's message of 05 Dec 1995 17:48:07 -0500 X-Attribution: mb Xref: main.gmane.org gmane.emacs.gnus.general:4284 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:4284 >>>>> "M" == Manoj Srivastava writes: M> Hi, Now that we know that nnmail-expiry-wait-function should M> not contain the method ("other" rather than "nnml:other"), does Do we? I thought it didn't matter: >>>>> "Lars" == Lars Magne Ingebrigtsen writes: Lars> mdb@cdc.noaa.gov (Mark Borges) writes: >> It doesn't seem to matter -- it appears to work fine with the >> method left in. Should it? Lars? Lars> No, it shouldn't. I took that as "it shouldn't matter". M> it make sense to have gnus-auto-expirable-newsgroups set to M> "^nnml:"? That works for me, though I have "nnml:" in my wait function as well. M> Or do I have to maintain the list by hand? Somewhare in thed M> documentation I read that the forst element in the newsrc.eld M> is the group name, and that certainly contains nnml: prefix. The code has this (at least for Gnus-5.0.12, I haven't tried sgnus) in gnus.el: ;; Check whether auto-expire is to be done in this group. (setq gnus-newsgroup-auto-expire (or (and (stringp gnus-auto-expirable-newsgroups) (string-match gnus-auto-expirable-newsgroups group)) (memq 'auto-expire (nth 5 info)))) so it should be OK without the method, and (if group includes the method, which I think it does) with the method as well. -mb-