From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/54084 Path: main.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: How to load spam.el just for gmane reporting? Date: Sun, 28 Sep 2003 01:08:03 +0200 Organization: Probably a good idea Sender: ding-owner@lists.math.uh.edu Message-ID: <87r8214yp8.fsf@doohan.bang.priv.no> References: <87d6do7kd4.fsf@doohan.bang.priv.no> <87d6dl6els.fsf@doohan.bang.priv.no> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1064704100 14399 80.91.224.253 (27 Sep 2003 23:08:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 27 Sep 2003 23:08:20 +0000 (UTC) Original-X-From: ding-owner+M2625@lists.math.uh.edu Sun Sep 28 01:08:18 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A3OAk-0005EI-00 for ; Sun, 28 Sep 2003 01:08:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1A3OAc-00082I-00; Sat, 27 Sep 2003 18:08:10 -0500 Original-Received: from justine.libertine.org ([66.139.78.221]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1A3OAY-00082D-00 for ding@lists.math.uh.edu; Sat, 27 Sep 2003 18:08:06 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by justine.libertine.org (Postfix) with ESMTP id D066F3A004B for ; Sat, 27 Sep 2003 18:08:05 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1A3OAX-0005NZ-00 for ; Sun, 28 Sep 2003 01:08:05 +0200 Mail-Followup-To: ding@gnus.org X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Received: from sea.gmane.org ([80.91.224.252]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A3OAW-0005NR-00 for ; Sun, 28 Sep 2003 01:08:04 +0200 Original-Received: from news by sea.gmane.org with local (Exim 3.35 #1 (Debian)) id 1A3OAW-0003jc-00 for ; Sun, 28 Sep 2003 01:08:04 +0200 Original-Lines: 16 Original-X-Complaints-To: usenet@sea.gmane.org Mail-Copies-To: never User-Agent: Gnus/5.1003 (Gnus v5.10.3) XEmacs/21.4 (Common Lisp, linux) Cancel-Lock: sha1:jZ4pMS4C2YMPdaQE9f9HQL1751g= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:54084 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:54084 >>>>> Steinar Bang : > I tried the following, > (setq gnus-spam-process-newsgroups > (list > (list "^nntp+news.gmane.org" 'gnus-group-spam-exit-processor-report-gmane) > )) Wrong list syntax, and I forgot to quote the "+" in the regexp. This works: (setq gnus-spam-process-newsgroups (list (list "^nntp\\+news.gmane.org" '(gnus-group-spam-exit-processor-report-gmane)) ))