From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/79630 Path: news.gmane.org!not-for-mail From: Julien Cubizolles Newsgroups: gmane.emacs.gnus.general Subject: Re: Default action when splitting Date: Thu, 11 Aug 2011 09:05:32 +0200 Message-ID: <87liv0ig1v.fsf@free.fr> References: <87bovynp2p.fsf@free.fr> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1313046451 10043 80.91.229.12 (11 Aug 2011 07:07:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 11 Aug 2011 07:07:31 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M27926@lists.math.uh.edu Thu Aug 11 09:07:27 2011 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 1QrPMT-0003Y9-RO for ding-account@gmane.org; Thu, 11 Aug 2011 09:07:26 +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 1QrPLI-00045j-Tl; Thu, 11 Aug 2011 02:06:12 -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 1QrPLG-00045Q-QU for ding@lists.math.uh.edu; Thu, 11 Aug 2011 02:06:10 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1QrPLE-0006Gr-4A for ding@lists.math.uh.edu; Thu, 11 Aug 2011 02:06:10 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1QrPL7-0005Ow-D2 for ding@gnus.org; Thu, 11 Aug 2011 09:06:01 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QrPL7-0002yy-0M for ding@gnus.org; Thu, 11 Aug 2011 09:06:01 +0200 Original-Received: from rke75-3-82-229-182-158.fbx.proxad.net ([82.229.182.158]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Aug 2011 09:06:00 +0200 Original-Received: from j.cubizolles by rke75-3-82-229-182-158.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Aug 2011 09:06:00 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 43 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: rke75-3-82-229-182-158.fbx.proxad.net User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:jBJMsXJc6NM7/GqnYIKKH6I9ZCM= X-Spam-Score: -5.7 (-----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:79630 Archived-At: Andreas Schwab writes: >> ,---- >> | (setq gnus-secondary-select-methods >> | '( >> | (nnimap "free" >> | (nnimap-address "imap.free.fr") >> | (nnimap-authentificator "j.cubizolles") >> | (nnimap-authinfo-file "~/.authinfo") >> | (nnimap-inbox "INBOX") >> | (nnimap-split-predicate "UNDELETED UNSEEN") >> | (nnimap-split-methods >> | '(| (: gnus-registry-split-fancy-with-parent) > > You have an extra quote here. I changed it to the following, where every split except the default one is removed. ,---- | (setq gnus-secondary-select-methods | '( | (nnimap "free" | (nnimap-address "imap.free.fr") | (nnimap-authentificator "j.cubizolles") | (nnimap-authinfo-file "~/.authinfo") | (nnimap-inbox "INBOX") | (nnimap-unsplittable-articles (%Deleted %Seen)) | (nnimap-split-methods | (| | )) | ) | ) | ) `---- All mail is still splitted to a mail.misc folder on the IMAP server, which gnus recreates if I remove it. If I just comment the nnimap-split-methods part, no splitting occurs. Somehow, this syntax activate the splitting but without setting any rule... Julien, at a loss for hours on this one.