From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29688 Path: main.gmane.org!not-for-mail From: Andrew Hobson Newsgroups: gmane.emacs.gnus.general Subject: Re: Expire by moving Date: 02 Apr 2000 22:33:13 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87pus9rab1.fsf@tea.thpoon.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035166317 4133 80.91.224.250 (21 Oct 2002 02:11:57 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:11:57 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id 897C5D051E for ; Sun, 2 Apr 2000 22:38:54 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id VAB00455; Sun, 2 Apr 2000 21:37:25 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 02 Apr 2000 21:33:11 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id VAA03348 for ; Sun, 2 Apr 2000 21:33:02 -0500 (CDT) Original-Received: from gamma.eng.mindspring.net (gamma.eng.mindspring.net [207.69.192.36]) by mailhost.sclp.com (Postfix) with ESMTP id 18232D051E for ; Sun, 2 Apr 2000 22:33:14 -0400 (EDT) Original-Received: by gamma.eng.mindspring.net (8.8.8/1.1.20.8/11Oct99-0252PM) id WAA0000027781; Sun, 2 Apr 2000 22:33:13 -0400 (EDT) X-Authentication-Warning: gamma.eng.mindspring.net: ahobson set sender to ahobson@eng.mindspring.net using -f Original-To: ding@gnus.org In-Reply-To: Arcady Genkin's message of "01 Apr 2000 12:38:26 -0500" Original-Lines: 30 User-Agent: Gnus/5.0804 (Gnus v5.8.4) XEmacs/21.2 (Iris) X-Face: (e_H,)"'M4u!E!3"|XVHJ=[/_.:z73Z^oGf")[Payuf said: > So I thought that it would be nice if gnus had a feature to expire > messages not by /deleting/ them, but by /moving/ them to some > arbitrary group. This way it would be possible to have the name of > such group assigned sensibly (like for expample I am dynamically > assigning group names to `gnus-message-archive-group'). I asked the same question a couple of months ago. AFAIK, it isn't possible. So what I did was have all of my mail crossposted to two groups: the archive group and the "usual" group. I only expire the "usual" group. I'm not using IMAP, so I do something like: (defun ahobson-incoming-group () (format-time-string "incoming.mail.%Y-%m")) (setq nnmail-split-fancy '(& (: ahobson-incoming-group) ;; non crossposted mail groups (| ("from" "fred@bedrock.com" "guys") ("from" "wilma@bedrock.com" "gals")))) (setq gnus-auto-expirable-newsgroups "guys\\|gals") Drew