[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Sheflug] Ebuyer.com Warning



On Thu, 2002-11-28 at 09:24, Steve Vernon wrote:
>     Iv'e had good experience with aria.co.uk, and they do some very cheap
> special deals of the day.

What no affiliate code? ;)

>         Love,
> 
>         Steve
>         XX

Hugs n kisses

Neil

___________________________________________________________________

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 ;
}