From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60720 Path: news.gmane.org!not-for-mail From: bkhl@elektrubadur.se (=?utf-8?Q?Bj=C3=B6rn_Lindstr=C3=B6m?=) Newsgroups: gmane.emacs.gnus.general Subject: What's wrong with my spam.el settings now? Date: Sun, 07 Aug 2005 08:38:14 +0200 Message-ID: <87mznufe09.fsf@lucien.dreaming> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1123396905 9290 80.91.229.2 (7 Aug 2005 06:41:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 7 Aug 2005 06:41:45 +0000 (UTC) Original-X-From: ding-owner+M9251=ding+2Daccount=gmane.org@lists.math.uh.edu Sun Aug 07 08:41:43 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E1epw-0000wg-B0 for ding-account@gmane.org; Sun, 07 Aug 2005 08:40:44 +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 1E1eps-0003tx-01 for ding-account@gmane.org; Sun, 07 Aug 2005 01:40:41 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1E1epn-0003tp-00 for ding@lists.math.uh.edu; Sun, 07 Aug 2005 01:40:35 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1E1epi-0003au-S0 for ding@lists.math.uh.edu; Sun, 07 Aug 2005 01:40:31 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1E1dtd-00067u-00 for ; Sun, 07 Aug 2005 07:40:29 +0200 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1E1eok-0000uM-1E for ding@gnus.org; Sun, 07 Aug 2005 08:39:30 +0200 Original-Received: from h233n9c1o1124.bredband.skanova.com ([81.230.32.233]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Aug 2005 08:39:30 +0200 Original-Received: from bkhl by h233n9c1o1124.bredband.skanova.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Aug 2005 08:39:30 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org Original-Lines: 53 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: h233n9c1o1124.bredband.skanova.com Mail-Copies-To: never X-Home-Page: http://bkhl.elektrubadur.se/ User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:MgwhNgm5yRrx0/rdCPvn5usA4aE= X-Spam-Score: 0.0 (/) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:60720 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60720 After upgrading to No Gnus (CVS of 20050719) my spam group is behaving differently. Spam is split to nnml:spam properly, and if I enter that group and leave, the new spam messages will still have it spam mark, and when I leave again, it will be processed again. What has changed that I need to compensate for? Here are the relevant parts of my configuration: ;; Spam (require 'spam) (spam-initialize) ;; Prevent multiple registration of articles. (require 'gnus-registry) (gnus-registry-initialize) (setq spam-log-to-registry t) ;; Use bogofilter for spam processing. (setq spam-use-bogofilter t) ;; Put incoming spam in "spam". (setq spam-split-group "spam") ;; Set spam and ham groups. (setq gnus-spam-newsgroup-contents '(("^nnml:spam" gnus-group-spam-classification-spam) ("^nnml:.*" gnus-group-spam-classification-ham))) ;; Train the filter. (setq spam-process-ham-in-spam-groups t gnus-spam-process-newsgroups '(("^nntp\\+news\\.gmane\\.org:" ((spam spam-use-gmane))) ("^nnml:.*" ((spam spam-use-bogofilter))))) ;; Move processed spam. (setq spam-move-spam-nonspam-groups-only t) (setq spam-mark-only-unseen-as-spam t) (setq gnus-spam-process-destinations '(("^nnml:.*" "nnml:spam"))) ;; Move processed ham. (setq spam-mark-ham-unread-before-move-from-spam-group t) (setq gnus-ham-process-destinations '(("^nnml:spam" "nnml:reclassify"))) ;; Splitting (setq '(| (: spam-split) ...))