From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/72586 Path: news.gmane.org!not-for-mail From: Gijs Hillenius Newsgroups: gmane.emacs.gnus.general Subject: Re: splitting for dunces Date: Tue, 05 Oct 2010 09:32:48 +0200 Organization: Using Emacs' Org Mode Message-ID: <87mxqt3xi7.fsf@hillenius.net> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1286264099 14475 80.91.229.12 (5 Oct 2010 07:34:59 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 5 Oct 2010 07:34:59 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M20958@lists.math.uh.edu Tue Oct 05 09:34:58 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P3233-0007Nx-3D for ding-account@gmane.org; Tue, 05 Oct 2010 09:34:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1P3231-00055h-9l; Tue, 05 Oct 2010 02:34:51 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1P322z-00055S-UE for ding@lists.math.uh.edu; Tue, 05 Oct 2010 02:34:49 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1P322y-0006nR-FY for ding@lists.math.uh.edu; Tue, 05 Oct 2010 02:34:49 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1P322u-0002Ym-00 for ; Tue, 05 Oct 2010 09:34:44 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P3221-00063A-2f for ding@gnus.org; Tue, 05 Oct 2010 09:33:49 +0200 Original-Received: from 10.87-136-217.adsl-dyn.isp.belgacom.be ([217.136.87.10]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 05 Oct 2010 09:33:49 +0200 Original-Received: from gijs by 10.87-136-217.adsl-dyn.isp.belgacom.be with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 05 Oct 2010 09:33:49 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 44 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 10.87-136-217.adsl-dyn.isp.belgacom.be X-Operating-System: Debian GNU/Linux Sid X-Homepage: http://www.hillenius.net/ X-GPGP-Fingerprint: 0D0B 9C67 0520 3B27 A91C 369B 7154 1B0A 04CF 3929 X-Now-Playing: Leggo Beast - Taxed N Tested User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:PiOXEGJmpcnuGaGlBJpHtmeeRH8= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:72586 Archived-At: On 5 Oct 2010, Richard Riley wrote: [...] > But split handling has dramatically changed? I ask because my splitting > doesnt work anymore and, to be honest, (as the posts about splitting > indicate) splitting is really tricky to get your head around. I find that it got a little easier. for Gnus 5.13 and earliers I had this, with 'thuis' being the name for the Imap server. ,---- | (setq nnimap-split-inbox | '("INBOX" )) | (setq nnimap-split-predicate "UNDELETED") | (setq nnimap-split-crosspost nil) | (setq nnimap-split-rule '(("thuis" ("INBOX" nnimap-split-fancy))) | nnimap-split-fancy | '(| (: gnus-folder-per-bbdb) | ("From" "googlealerts.*" "INBOX.google-alerts") | ;; omitted bunch of similar lines | (any "opentaal-discussie@lists.uitwisselplatform.nl" "INBOX.opentaal") | (any "dspam-user@lists.sourceforge.net" "INBOX.dspam") | ("INBOX" ""))) | `---- for No Gnus v0.11 I have 'just' this: ,---- | (setq nnimap-split-fancy | '(| (: gnus-folder-per-bbdb) | ("From" "googlealerts.*" "INBOX.google-alerts") | et cetera `---- and added this line to the imap server defenition in the *server* buffer" ,---- | (nnimap-split-methods nnmail-split-fancy) `----