From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/12926 Path: news.gmane.org!not-for-mail From: Volkan YAZICI Newsgroups: gmane.emacs.gnus.user Subject: Re: Filtering Spam Messages With Bogofilter Date: Wed, 16 Sep 2009 06:14:32 -0700 (PDT) Organization: http://groups.google.com Message-ID: <6753d3c8-33f9-40ff-9cb0-6ace8fa1265a@d23g2000vbm.googlegroups.com> References: <4135e24b-ba6f-4d91-875c-4a702c017641@g19g2000yqo.googlegroups.com> <87k5012uwi.fsf@lifelogs.com> <50af38b8-0de8-45fb-aebb-1704c482388f@j19g2000vbp.googlegroups.com> <87vdjkz7q0.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1253109111 30151 80.91.229.12 (16 Sep 2009 13:51:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 16 Sep 2009 13:51:51 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Wed Sep 16 15:51:44 2009 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Mnuv8-0008SK-Sj for gegu-info-gnus-english@m.gmane.org; Wed, 16 Sep 2009 15:51:43 +0200 Original-Received: from localhost ([127.0.0.1]:56360 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mnuv4-0008Ab-Ua for gegu-info-gnus-english@m.gmane.org; Wed, 16 Sep 2009 09:51:39 -0400 Original-Path: news.stanford.edu!usenet.stanford.edu!postnews.google.com!d23g2000vbm.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 61 Original-NNTP-Posting-Host: 139.179.21.138 Original-X-Trace: posting.google.com 1253106873 12132 127.0.0.1 (16 Sep 2009 13:14:33 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 16 Sep 2009 13:14:33 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: d23g2000vbm.googlegroups.com; posting-host=139.179.21.138; posting-account=xozGQQoAAAD99EQH9srmwM1ajggyokYW User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3,gzip(gfe),gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.gnus:83284 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:12926 Archived-At: On Sep 15, 3:57=A0pm, Ted Zlatanov wrote: > Bogofilter is not set as your group's spam exit processor (according to > spam-group-processor-p). =A0Can you try using `G c' on a group and > explicitly set it in the group/topic parameters, then mark spam and > exit? =A0If that works, we can check what's inconsistent in your Lisp > configuration (it looks fine as I said, but I may have missed > something). =A0There are old-style and new-style backend specification > formats, which makes it even more annoying for you I'm sure. I "G c"ed into "misc" group and selected below parameters. [X] Spam Summary Exit Processor: [Value Menu] Spam Summary Exit Processor Choices: Set: [ ] gnus-group-spam-exit-processor-ifile OBSOLETE: The ifile summary exit spam processor. ... [ ] gnus-group-ham-exit-processor-copy OBSOLETE: The ham copy exit ham processor. [More] [ ] Spam: Gmane Report [X] Spam: Bogofilter [ ] Spam: Blacklist ... [ ] Ham: Spam Oracle Which spam or ham processors will be applied when the summary is exited. After pressing to "[Done]" I returned back to *Group* buffer and marked an article in the "misc" group via "S x" and closed the group buffer. Below are the related lines appeared in the *Messages* buffer. Exiting summary buffer and applying spam rules Registering 1 articles with classification spam, check spam-use- bogofilter Marking spam as expired without moving it Expiring articles...done Quit But when I entered into "misc" group again, I still see the spam marked message with an "E" status (as was before). Shouldn't it be disappeared and messaged would have moved into "spam" group? BTW, I have below configurations in my ~/.gnus.el file and "misc" is collected under "mail" topic. (defun custom-nnmail-expiry-wait (group) (cond ((member (gnus-group-topic group) '("mail" "personal")) 90) (t 30))) (setq gnus-agent-expire-all nil gnus-agent-expire-days 7 gnus-agent-expire-unagentized-dirs t nnmail-expiry-wait 7 message-expires 7 nnmail-expiry-wait-function 'custom-nnmail-expiry-wait gnus-auto-expirable-newsgroups ".*") Regards.