Gnus development mailing list
 help / color / mirror / Atom feed
From: Alex Schroeder <alex@emacswiki.org>
Subject: Re: Splitting on mail contents?  (using spam-stat.el)
Date: Fri, 06 Sep 2002 17:55:03 +0200	[thread overview]
Message-ID: <87sn0nnmeg.fsf@emacswiki.org> (raw)
In-Reply-To: <vafheh5vm4k.fsf@lucy.cs.uni-dortmund.de>

Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann) writes:

>> I see that spam-stat-split-fancy uses gnus-original-article-buffer.
>> Does nnmail-split-fancy perhaps store the article in this buffer when
>> splitting?  I'll have to investigate that.
>
> Well, I remember that Gnus uses two different buffers for splitting
> and for `B r'.  Beware!

Yeah, I am still trying to find a bug in my code that sends about 1%
of all mail into the bogus group.  The problem is that I cannot debug
this (because it only happens in 1% of the cases, and errors are
probably caught using condition-case).  Just today I switched to the
following definition, hoping to finally find the bug. 

(defun spam-stat-split-fancy ()
  "Return the name of the spam group if the current mail is spam.
Use this function on `nnmail-split-fancy'.  If you are interested in
the raw data used for the last run of `spam-stat-score-buffer',
check the variable `spam-stat-score-data'."
  (condition-case var
      (save-excursion
	(set-buffer (if (boundp 'gnus-original-article-buffer)
			gnus-original-article-buffer
		      (message "Original article buffer not found.")
		      (current-buffer)))
	(goto-char (point-min))
	(if (> (spam-stat-score-buffer) 0.9)
	    (progn
	      (message "Spam-stat says this is spam!")
	      spam-stat-split-fancy-spam-group)
	  (message "Spam-stat says this is no spam.")))
    (error (message "Spam-stat found an error: %S" var))))

Alex.



  parent reply	other threads:[~2002-09-06 15:55 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-04 12:01 Oystein Viggen
2002-09-04 14:00 ` Kai Großjohann
2002-09-04 14:16   ` Oystein Viggen
2002-09-04 14:56     ` Kai Großjohann
2002-09-04 15:16       ` Oystein Viggen
2002-09-04 15:23       ` Jeremy H. Brown
2002-09-04 17:00         ` Oystein Viggen
2002-09-13 16:18         ` finding the article buffer when splitting Alex Schroeder
2002-09-13 23:56           ` Oystein Viggen
2002-09-14  1:18             ` Alex Schroeder
2002-09-14 10:01               ` Oystein Viggen
2002-09-15 18:21           ` Jeremy H. Brown
2002-09-23 14:11             ` Alex Schroeder
2002-09-23 18:49               ` Oystein Viggen
2002-09-06 15:55       ` Alex Schroeder [this message]
2002-09-07 12:30         ` Splitting on mail contents? (using spam-stat.el) Alex Schroeder
2002-09-07 17:17           ` Simon Josefsson
2002-09-07 19:05             ` Kai Großjohann
2002-09-07 19:05           ` Kai Großjohann
2002-09-12 16:07 ` Paul Jarc

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87sn0nnmeg.fsf@emacswiki.org \
    --to=alex@emacswiki.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).