From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/69240 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: Issue with nnml backend and gnus-group-get-new-news() Date: Mon, 30 Nov 2009 13:26:59 +0100 Message-ID: <87pr7019m4.fsf@thinkpad.tsdh.de> References: <38b2ab8a0911300136v4593c4b6y41a072ea0f606475@mail.gmail.com> <87bpik2vam.fsf@thinkpad.tsdh.de> <38b2ab8a0911300233x3de8d5e6hb1ab52551af51f65@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1259584095 11264 80.91.229.12 (30 Nov 2009 12:28:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Nov 2009 12:28:15 +0000 (UTC) Cc: ding@gnus.org To: Francis Moreau Original-X-From: ding-owner+M17645@lists.math.uh.edu Mon Nov 30 13:28:08 2009 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.50) id 1NF5MM-0003yQ-Ob for ding-account@gmane.org; Mon, 30 Nov 2009 13:28:08 +0100 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 1NF5Lb-0002G3-NP; Mon, 30 Nov 2009 06:27:19 -0600 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 1NF5La-0002Fs-IZ for ding@lists.math.uh.edu; Mon, 30 Nov 2009 06:27:18 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1NF5LM-0005bK-6a for ding@lists.math.uh.edu; Mon, 30 Nov 2009 06:27:18 -0600 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1NF5LL-0004fe-00 for ; Mon, 30 Nov 2009 13:27:03 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by deliver.uni-koblenz.de (Postfix) with ESMTP id 4261F7893C96; Mon, 30 Nov 2009 13:27:02 +0100 (CET) Original-Received: from deliver.uni-koblenz.de ([127.0.0.1]) by localhost (deliver.uni-koblenz.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06698-05; Mon, 30 Nov 2009 13:26:59 +0100 (CET) X-CHKRCPT: Envelopesender noch tassilo@member.fsf.org Original-Received: from thinkpad.tsdh.de (unknown [141.26.94.103]) by deliver.uni-koblenz.de (Postfix) with ESMTP id 9A59778A3187; Mon, 30 Nov 2009 13:26:59 +0100 (CET) In-Reply-To: <38b2ab8a0911300233x3de8d5e6hb1ab52551af51f65@mail.gmail.com> (Francis Moreau's message of "Mon, 30 Nov 2009 11:33:08 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) X-Virus-Scanned: amavisd-new at uni-koblenz.de X-Spam-Score: -5.6 (-----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:69240 Archived-At: Francis Moreau writes: Hi Francis, > On Mon, Nov 30, 2009 at 10:53 AM, Tassilo Horn wrote: >> Francis Moreau writes: >> >> Hm, could you please provide the relevant parts of your config? > > Sure, it's quite simple: > > (setq nnmail-split-methods > ("save.wyplay.bugs" "^From: bugzilla-daemon@.*") > ("Inbox" ""))) Do you have this in your .gnus.el? The syntax is wrong, and normally you should get an error with that. This would be correct: --8<---------------cut here---------------start------------->8--- (setq nnmail-split-methods '(("save.wyplay.bugs" "^From: bugzilla-daemon@.*") ("Inbox" ""))) --8<---------------cut here---------------end--------------->8--- >> I think that maybe your splitting rules don't match anything, and so >> all your mails end up in some "misc" group you probably aren't >> subscribed to. > > Hm, I don't think so since they work as expected if I call > gnus-group-get-new-news() _without_ prefix. Hm, I don't know how the prefix should interfer with the splitting. Do you provide a prefix value that includes or excludes those groups? > Could you give it a try and see if it works as exepcted on your side ? I use fancy mail splitting, and it works for me. But I didn't test with a prefix argument till now, because those two accounts I use nnml and POP3 sources for are very low traffic. --8<---------------cut here---------------start------------->8--- (setq nnmail-split-methods 'nnmail-split-fancy nnmail-split-fancy '(| (any "tassilo.horn@gmx.de" "gmx") (any "tassilo.horn@freenet.de" "freenet") "misc")) --8<---------------cut here---------------end--------------->8--- Bye, Tassilo