From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60543 Path: news.gmane.org!not-for-mail From: bojohan+news@dd.chalmers.se (Johan =?utf-8?Q?Bockg=C3=A5rd?=) Newsgroups: gmane.emacs.gnus.general Subject: Re: some messages ending up in 'bogus' group Date: Sat, 09 Jul 2005 14:36:45 +0200 Message-ID: References: <87wto1m607.fsf@gmail.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1120912627 16502 80.91.229.2 (9 Jul 2005 12:37:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 9 Jul 2005 12:37:07 +0000 (UTC) Original-X-From: ding-owner+M9071=ding+2Daccount=gmane.org@lists.math.uh.edu Sat Jul 09 14:37:01 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DrEZi-0005bU-0J for ding-account@gmane.org; Sat, 09 Jul 2005 14:36:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1DrEZg-0005FI-01 for ding-account@gmane.org; Sat, 09 Jul 2005 07:36:52 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1DrEZb-0005FA-00 for ding@lists.math.uh.edu; Sat, 09 Jul 2005 07:36:47 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1DrEZa-0004IJ-61 for ding@lists.math.uh.edu; Sat, 09 Jul 2005 07:36:46 -0500 Original-Received: from news by quimby.gnus.org with local (Exim 3.35 #1 (Debian)) id 1DrEZZ-0003KI-00 for ; Sat, 09 Jul 2005 14:36:45 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 35 Original-NNTP-Posting-Host: linus003.dd.chalmers.se Original-X-Trace: quimby.gnus.org 1120912605 12789 129.16.117.203 (9 Jul 2005 12:36:45 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Sat, 9 Jul 2005 12:36:45 +0000 (UTC) Mail-Copies-To: never User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:WmCjddMtmG1dQS1B+hTIvzO26Jo= X-Spam-Score: -4.9 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:60543 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60543 Sebastian Luque writes: > I recently found that a mail message sent to me ended up in the > 'bogus' group, much to my horror (because I was not subscribed to > that one...until now). I reanalyzed my ~/.gnus, but couldn't find > anything that could cause this, but reading the manual it seemed > that this might have something to do with it: > > (require 'spam) > (setq spam-split-group "Spam" > spam-use-bogofilter t > nnmail-split-methods 'nnmail-split-fancy > nnmail-split-fancy > '(| (any ".*video4linux.*\\|.*Sympa\\|.*helixcommunity.*\\|.*aircanada.com.*\\|.*ostg.*" "Various") > ("to" ".*ecolog-l.*" "Ecolog-L") > ("to" ".*marmam.*" "Marmam") > ("to" ".*mammal-l.*" "Mammal-L") > (: spam-split) > "mail.misc")) > (spam-initialize) The only thing i can think of is that something happens that makes spam-split signal an error. In that case you would see "Error in `nnmail-split-methods'; using `bogus' mail group" in the echo area. This is a workaround: (defadvice spam-split (around ignore-errors activate) (condition-case data ad-do-it (error (message "Error in spam-split: %s" data) nil))) -- Johan Bockgård