[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sheflug] Any recommendations for the server side equiv of mailwasher?
On Thu, Dec 05, 2002 at 01:25:19PM +0000, David Holden wrote:
> > Mailwasher allows you to bounce emails and filter all based on whether
> > they are spam or not.
> >
> > Anything I can put on my server that does something similar for my
> > users?
>
> I'd be interested in this also.
SpamAssassin. When run in daemon mode it's not too slow, and can tag
or bounce e-mails on your choice.
I use it, it tags most spam. The one or two false positives have been
people forwarding spam to me....
It can also be setup with white and black lists.
Cheers,
Alex.
___________________________________________________________________
Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html
GNU the choice of a complete generation.
#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
while (<>){
$_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
print unless /^Delivered-To:/i ;
}