From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/11212 Path: news.gmane.org!not-for-mail From: Volkan YAZICI Newsgroups: gmane.emacs.gnus.user Subject: GNUS-AGENT-EXPIRE Does Nothing Date: Thu, 17 Jul 2008 00:37:15 -0700 (PDT) Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1216280423 14568 80.91.229.12 (17 Jul 2008 07:40:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 17 Jul 2008 07:40:23 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Thu Jul 17 09:41:11 2008 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KJO6u-0001YP-63 for gegu-info-gnus-english@m.gmane.org; Thu, 17 Jul 2008 09:41:08 +0200 Original-Received: from localhost ([127.0.0.1]:48188 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KJO61-0007Ft-J1 for gegu-info-gnus-english@m.gmane.org; Thu, 17 Jul 2008 03:40:13 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!k13g2000hse.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 29 Original-NNTP-Posting-Host: 213.139.194.86 Original-X-Trace: posting.google.com 1216280235 29631 127.0.0.1 (17 Jul 2008 07:37:15 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Thu, 17 Jul 2008 07:37:15 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: k13g2000hse.googlegroups.com; posting-host=213.139.194.86; posting-account=xozGQQoAAAD99EQH9srmwM1ajggyokYW User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.15) Gecko/20080612 Iceweasel/2.0.0.15 (Debian-2.0.0.15-0etch1), gzip(gfe), gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.gnus:81431 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:11212 Archived-At: Hi, [I know this question has been raised many times before, but I couldn't find an appropriate thread fits to my situation. If you knew one, don't hesistate to bash me.] Despite below configurations, calling GNUS-AGENT-EXPIRE on an article from "18 Oct 2007" returns "Expiry recovered 0 NOV entries, deleted 0 files, and freed 0.000000 B." and obviously no expiration occurs. Any ideas what I might be missing? (defun custom-nnmail-expiry-wait (group) (cond ((string-match "mail" (gnus-group-topic group)) 90) (t 30))) (setq gnus-agent-expire-all nil gnus-agent-expire-days 7 gnus-agent-expire-unagentized-dirs t nnmail-expiry-wait 7 message-expires 7 nnmail-expiry-wait-function 'custom-nnmail-expiry-wait gnus-auto-expirable-newsgroups ".*") BTW, among gnus-agent-expire-days, nnmail-expiry-wait, message-expires and nnmail-expiry-wait-function, how gnus decides which one to use? Regards.