From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57168 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.emacs.gnus.general Subject: Re: spamc invocation: move from procmail to Gnus Date: Fri, 30 Apr 2004 10:18:39 +1000 Organization: Bah Humbug Sender: ding-owner@lists.math.uh.edu Message-ID: <87d65qjp28.fsf@zip.com.au> References: <873c6tdvbs.fsf@unix.home.local> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1083284443 13090 80.91.224.253 (30 Apr 2004 00:20:43 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 30 Apr 2004 00:20:43 +0000 (UTC) Original-X-From: ding-owner+M5708@lists.math.uh.edu Fri Apr 30 02:20:37 2004 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 1BJLld-0003Mv-00 for ; Fri, 30 Apr 2004 02:20:37 +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 1BJLkE-00033y-00; Thu, 29 Apr 2004 19:19:10 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BJLk7-00033s-00 for ding@lists.math.uh.edu; Thu, 29 Apr 2004 19:19:03 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BJLk5-0006Jy-Ui for ding@lists.math.uh.edu; Thu, 29 Apr 2004 19:19:01 -0500 Original-Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by justine.libertine.org (Postfix) with ESMTP id CA7663A0044 for ; Thu, 29 Apr 2004 19:18:58 -0500 (CDT) Original-Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout1.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id i3U0Iu4u019222 for ; Fri, 30 Apr 2004 10:18:56 +1000 Original-Received: from localhost (ppp2476.dyn.pacific.net.au [61.8.36.118]) by mailproxy1.pacific.net.au (8.12.3/8.12.3/Debian-6.6) with ESMTP id i3U0IsI1030268 for ; Fri, 30 Apr 2004 10:18:55 +1000 Original-Received: from gg by localhost with local (Exim 3.36 #1 (Debian)) id 1BJLjk-0000WO-00; Fri, 30 Apr 2004 10:18:40 +1000 Original-To: ding@gnus.org User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57168 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57168 deskpot@despammed.com (Vasily Korytov) writes: > > add (: function) > construction to nnmail-split-fancy, that calls `spamc -c`. > Unfortunately, that does not suit me: I definitely want spam scores in > message headers. When I used that setup (isp despam now, it got too slow for my poor pc), I usually did a separate spamassassin run to get its scores, to investigate false positives or negatives. Use at your own risk, etc, etc. (defun my-spamassassin-test () (interactive) (gnus-summary-show-article t) (set-buffer "*Article*") (shell-command-on-region (point-min) (point-max) "spamassassin -t") (other-window 1) (beginning-of-buffer) (re-search-forward "^X-Spam" (point-max) t) (beginning-of-line) (recenter 3))