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

[Sheflug] Re: December Meeting



Hi

The archive has been doing some odd things for a few days but I'm 
assured by Pieter Meiring that is has now been fixed..  thought I'd 
send a test message to make sure it was okay....

> > Okay...  Been over to the restaurant and booked a table for six
> > and pushed £30 deposit over the table to cover the booking for
> > 5.30 p.m. on the 7th of December.

Anyone else wants to come along for dinner please say so.  There's 
plenty of room.   Just that we need to tell the people who run the
restaurant exactly how many people will be coming along.

 We don't want to leave anyone outside in the pouring rain :)

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