From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.help Subject: Re: Consequent Matches in `NNMAIL-SPLIT-METHOD' Date: Mon, 22 Jun 2009 17:02:59 +0200 Message-ID: <87d48w8g64.fsf@ambire.localdomain> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1245683347 28313 80.91.229.12 (22 Jun 2009 15:09:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Jun 2009 15:09:07 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Volkan YAZICI Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jun 22 17:09:05 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MIl8q-0003NA-Mv for geh-help-gnu-emacs@m.gmane.org; Mon, 22 Jun 2009 17:09:05 +0200 Original-Received: from localhost ([127.0.0.1]:34403 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MIl8p-0007kL-Vt for geh-help-gnu-emacs@m.gmane.org; Mon, 22 Jun 2009 11:09:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MIl8U-0007jP-MC for help-gnu-emacs@gnu.org; Mon, 22 Jun 2009 11:08:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MIl8S-0007hO-6F for help-gnu-emacs@gnu.org; Mon, 22 Jun 2009 11:08:42 -0400 Original-Received: from [199.232.76.173] (port=59659 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MIl8S-0007hL-1A for help-gnu-emacs@gnu.org; Mon, 22 Jun 2009 11:08:40 -0400 Original-Received: from smtp-out113.alice.it ([85.37.17.113]:3978) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MIl8R-0000vk-JC for help-gnu-emacs@gnu.org; Mon, 22 Jun 2009 11:08:39 -0400 Original-Received: from FBCMMO01.fbc.local ([192.168.68.195]) by smtp-out113.alice.it with Microsoft SMTPSVC(6.0.3790.3959); Mon, 22 Jun 2009 17:08:38 +0200 Original-Received: from FBCMCL01B05.fbc.local ([192.168.69.86]) by FBCMMO01.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Mon, 22 Jun 2009 17:08:37 +0200 Original-Received: from ambire.localdomain ([79.24.14.229]) by FBCMCL01B05.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Mon, 22 Jun 2009 17:08:37 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1MIl2x-0001HA-41; Mon, 22 Jun 2009 17:02:59 +0200 In-Reply-To: (Volkan YAZICI's message of "Mon, 22 Jun 2009 06:09:11 -0700 (PDT)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-OriginalArrivalTime: 22 Jun 2009 15:08:37.0862 (UTC) FILETIME=[51E1D060:01C9F34B] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:65433 Archived-At: () Volkan YAZICI () Mon, 22 Jun 2009 06:09:11 -0700 (PDT) How can I make message splitting through `NNMAIL-SPLIT-METHOD' to stop after the first found match, instead of processing the rest. I have this in ~/.gnus: (setq nnmail-split-methods 'nnmail-split-fancy) (setq nnmail-split-fancy '(| (from ttn-other-hackers "ttn.software") (from "cron daemon" "mail.sysadmin") ;; more stuff here )) This seems to do what i think you are looking for. thi