-----BEGIN PGP SIGNED MESSAGE-----
I'm working on a content-based spam filter. The more spam
I have to
train and/or test with, the better the filter will be, so I'd like
everyone to bounce unsolicited junk email to junk@thehouse.org.
I
have over 400 pieces so far, though since they come from several
contributors, there are probably duplicates.
If you send any junkmail, please leave the headers and body as intact
as possible.
* Don't make a new message and include the junk mail in it.
* Don't use the "forward" feature on your mailer.
* Don't send the junk as an attachment.
* Don't send more than one piece of junk in a single message.
* Don't quote the message text by inserting characters at
the
beginning of each line.
Most of these things aren't that hard to undo, but everyone does
them
a bit differently and I'd rather not have to go through and fix
them
all.
The best way to do it:
sendmail junk@thehouse.org < onemessage
or
formail -ds sendmail junk@thehouse.org < manymessages
The "bounce" command in Elm is fine.
If you use Emacs and VM, the following code will bind the 'J' key
in
the summary window to do the Right Thing.
(defvar flan-junkmail-address "junk@thehouse.org"
"The address to forward all junkmail to.")
(defun flan-junk-junkmail (prefix-arg)
"Send all junkmail to 'flan-junkmail-address and delete
it."
(interactive "p")
(if (interactive-p)
(vm-follow-summary-cursor))
(vm-delete-message 1)
(vm-pipe-message-to-command (concat "/usr/lib/sendmail "
flan-junkmail-address)
prefix-arg))
(define-key vm-mode-map "J" 'flan-junk-junkmail)
-----BEGIN PGP SIGNATURE-----
Version: 2.6.2
iQCVAwUBM6mkwohkYJLkh2ERAQE6vgP/UNCb37a8pA53vRZMm8zFgJOllFlPNBbf
KpDiWNLUUvZZNVORs8BELqigdzLdbGiP2LeT0fiUuUI0y52XXN0NkVJeSH5rXWb1
5T6hbi5dUAlCl70T4sy6CVjp4HmWgMpGgnxYD5eDjrn9y8oHuvFyjvNF+MV25zas
0cCDRWWLqPU=
=m63I
-----END PGP SIGNATURE-----