From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/46499 Path: main.gmane.org!not-for-mail From: David Aspinwall Newsgroups: gmane.emacs.gnus.general Subject: Re: spam*.el and ifile-gnus.el? Date: Wed, 11 Sep 2002 17:05:03 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: <8765xdva0q.fsf@emacswiki.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1031789245 2529 127.0.0.1 (12 Sep 2002 00:07:25 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 12 Sep 2002 00:07:25 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17pHW0-0000ef-00 for ; Thu, 12 Sep 2002 02:07:24 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17pHUa-0007zA-00; Wed, 11 Sep 2002 19:05:56 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 11 Sep 2002 19:06:32 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id TAA12999 for ; Wed, 11 Sep 2002 19:06:20 -0500 (CDT) Original-Received: (qmail 27900 invoked by alias); 12 Sep 2002 00:05:33 -0000 Original-Received: (qmail 27890 invoked from network); 12 Sep 2002 00:05:33 -0000 Original-Received: from host209.timesten.com (HELO mis-dns.mv.timesten.com) (63.75.22.209) by gnus.org with SMTP; 12 Sep 2002 00:05:33 -0000 Original-Received: from django.timesten.com (IDENT:root@django.mv.timesten.com [10.10.10.78]) by mis-dns.mv.timesten.com (8.11.0/8.11.0) with ESMTP id g8C053A00409 for ; Wed, 11 Sep 2002 17:05:03 -0700 Original-Received: (from aspin@localhost) by django.timesten.com (8.9.3/8.9.3) id RAA20478; Wed, 11 Sep 2002 17:05:03 -0700 X-Authentication-Warning: django.timesten.com: aspin set sender to aspinwall@TimesTen.com using -f Original-To: ding@gnus.org X-Face: _s55Gf%Rq2OUH2t)0RDSD&[O}DEX/.!e@peMi]W+&,4~0j)$FBgMu;!E1FRiWerH6\fM\P3 %0VB`o%XIv,;Z4u[*u!=/B^:PbVx'eR5;g3Ljz!QPiS=|kw'r~&A( (Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "Wed, 11 Sep 2002 11:59:34 +0200") Original-Lines: 18 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:46499 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:46499 >>"Kai.Grossjohann" == Kai Grossjohann writes: > Thanks to ifile-gnus.el, ifile knows when I manually move a message > into another group. I like ifile-gnus.el, but one problem I have is that I use nnmail-expiry-target to expire articles into a group. When that happens, ifile gets run. I don't really want things split into the expired articles group though. I'm using a hack which seems to work: (defadvice nnmail-expiry-target-group (around do-not-run-ifile-when-expiring activate) "Don't run ifile when doing expiry" (let ((ifile-program "/bin/true")) ad-do-it)) but that's pretty ugly. Is there any better way to do it?