From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/9022 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: mail splitting doesn't work Date: Mon, 21 May 2007 13:39:36 +0900 Organization: Emacsen advocacy group Message-ID: References: <87veends6d.fsf@thalassa.lan.informatimago.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1179722433 7298 80.91.229.12 (21 May 2007 04:40:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 21 May 2007 04:40:33 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon May 21 06:40:32 2007 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 1Hpzh9-0001uu-Gd for gegu-info-gnus-english@m.gmane.org; Mon, 21 May 2007 06:40:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hpzh8-0006XC-Fy for gegu-info-gnus-english@m.gmane.org; Mon, 21 May 2007 00:40:30 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 25 Original-X-Trace: individual.net AK24+Y2axjkLyI+LtgI4cAdw7FJZRLQuL7TCMd5SCBS9+Bon0= 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.110007 (No Gnus v0.7) Emacs/22.0.990 (gnu/linux) Cancel-Lock: sha1:vuDh/WfDTXJcjUKmhnDqKEq/lvU= Original-Xref: shelby.stanford.edu gnu.emacs.gnus:79206 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:9022 Archived-At: >>>>> In <87veends6d.fsf@thalassa.lan.informatimago.com> >>>>> Pascal Bourguignon wrote: > I customized nnmail split as indicated in info for gnu, but it doesn't > work, no splitting occurs either when I fetch new mail nor when I > respool the bogus mail group where all mails land eventually... > (custom-set-variables > '(nnmail-split-fancy (quote (| (: nnmail-split-fancy-with-parent) > ("From:" ".*Cron Daemon.*" "mail.cron") > (To: ".*vms-list@voynich.net.*" "mail.voynich") > (From: ".*gentoo.*" "mail.gentoo") > (From: ".*zenith.*@zenit.org.*" "mail.zenith") > (To: ".*\\(lisp.it\\|slime.*@common-lisp.net\\).*" "mail.lisp") > (From: ".*\\(@freelance.com\\|@dice.com\\).*" "mail.jobs")))) > What should I do to have my emails split into the right groups? The first element of each split should be a string which is a header name not containing ":", or a symbol defined in `nnmail-split-abbrev-alist'. In addition, all regexps are case insensitive. So, you may want to replace "From:" and From: with "from" or just from, To: with "to" or to. Regards,