[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sheflug] [Off-Topic] Free Software Consortium in search of Consultants and Agents in your area.
Hi
> We would like to invite you to be a founding members of the FSC
> either as a Consultant and/or an Agent.
Just about every other list has been spammed with this message and we
have been asked to ignore it. I've removed the offending spammer.
You shouldn't get any more of this particular message.
It's amazing what people do to this list in the early hours of the
morning :)
--
Thanks
Richard
___________________________________________________________________
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 ;
}