From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/775 Path: news.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.user Subject: Re: Case sensitive split Date: Tue, 16 Jul 2002 09:16:38 -0400 Organization: Vanilla Knot Message-ID: References: Reply-To: karl+usenet@charcoal.com NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138667694 8355 80.91.229.2 (31 Jan 2006 00:34:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:34:54 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:28:06 2006 Original-Path: quimby.gnus.org!news.ccs.neu.edu!news.dfci.harvard.edu!news.cis.ohio-state.edu!newsfeed.berkeley.edu!ucberkeley!logbridge.uoregon.edu!arclight.uoregon.edu!newsfeed.srv.cs.cmu.edu!cantaloupe.srv.cs.cmu.edu!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: crabapple.srv.cs.cmu.edu Original-X-Trace: cantaloupe.srv.cs.cmu.edu 1026825610 25201 128.2.206.189 (16 Jul 2002 13:20:10 GMT) Original-X-Complaints-To: postmaster@cs.cmu.edu Original-NNTP-Posting-Date: 16 Jul 2002 13:20:10 GMT X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6 hR;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu User-Agent: Gnus/5.090007 (Oort Gnus v0.07) XEmacs/21.4 (Honest Recruiter, i686-pc-linux) Cancel-Lock: sha1:0os9CI4BJOI1g7NFt1ZgKd5ku8g= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:915 Original-Lines: 12 X-Gnus-Article-Number: 915 Tue Jan 17 17:28:06 2006 Xref: news.gmane.org gmane.emacs.gnus.user:775 Archived-At: arne_caspari@lxserver.dbs.de writes: > How do I tell the regexp to match only uppercase letters? (add-hook 'nnmail-split-hook (lambda nil (setq case-fold-search nil))) I don't use fancy splitting, but in ordinary splitting, this is the way to catch what you want: ("tomb" "Subject: \\(Re: \\)?[^a-z]+$") That is, it's not sufficient to catch a bunch of uppercase. You have to catch the _lack_ of _lowercase_.