Re: [ADMINISTRIVIA]: Change list submission policy please?

2002-06-27 Thread Ralf Hinze
> The haskell mailing list is getting an increasing amount of > spam, viruses, and virus warnings. Would it be possible > to change the list policy to only allow submissions from > subscribed members? Please? I'd like to second this. The amount of spam etc is becoming more and more annoying ...

[ADMINISTRIVIA]: Change list submission policy please?

2002-06-27 Thread Joe English
The haskell mailing list is getting an increasing amount of spam, viruses, and virus warnings. Would it be possible to change the list policy to only allow submissions from subscribed members? Please? --Joe English [EMAIL PROTECTED] ___ Haskell

ScanMail Message: To Recipient virus found or matched file blocking setting.

2002-06-27 Thread System Attendant
ScanMail for Microsoft Exchange has taken action on the message, please refer to the contents of this message for further details. Sender = [EMAIL PROTECTED] Recipient(s) = [EMAIL PROTECTED]; Subject = Fw: Dont wait for long time :-) Scanning Time = 06/27/2002 20:15:30 Engine/Pattern = 6.150-1001

Antigen Notification:Antigen found VIRUS= Exploit.IFrame.FileDownload (Kaspersky,CA(Vet)) virus

2002-06-27 Thread Antigen
Antigen for Exchange found Unknown infected with VIRUS= Exploit.IFrame.FileDownload (Kaspersky,CA(Vet)) virus. The file is currently Removed. The message, "Fw: Dont wait for long time :-)", was sent from jovilmar and was discovered in SMTP Messages\Inbound located at Cornell Computer Science/CU

Fw: Dont wait for long time :-)

2002-06-27 Thread jovilmar
<>

ScanMail Message: To Recipient virus found or matched file blocking setting.

2002-06-27 Thread System Attendant
ScanMail for Microsoft Exchange has taken action on the message, please refer to the contents of this message for further details. Sender = [EMAIL PROTECTED] Recipient(s) = [EMAIL PROTECTED]; Subject = Fw: Wonderfool Screensaver to share Scanning Time = 06/27/2002 19:14:26 Engine/Pattern = 6.15

Fw: Wonderfool Screensaver to share

2002-06-27 Thread anousca_aykaz
<>

ScanMail Message: To Recipient virus found or matched file blocking setting.

2002-06-27 Thread System Attendant
ScanMail for Microsoft Exchange has taken action on the message, please refer to the contents of this message for further details. Sender = [EMAIL PROTECTED] Recipient(s) = [EMAIL PROTECTED]; Subject = Fw: The world of lovers Scanning Time = 06/27/2002 16:30:27 Engine/Pattern = 6.150-1001/305

Fw: The world of lovers

2002-06-27 Thread jovilmar
Attached one Gift for u..jovilmar- Original Message -From: "urfriend" < [EMAIL PROTECTED] >To: < [EMAIL PROTECTED] >Sent: Thu,27 Jun 2002 22:28:49 PMSubject: The world of lovers This e-mail is never sent unsolicited. If you need to unsubscribe, follow the instructions at the bottom of th

ScanMail Message: To Sender virus found or matched file blocking setting.

2002-06-27 Thread System Attendant
ScanMail for Microsoft Exchange has taken action on the message, please refer to the contents of this message for further details. Sender = [EMAIL PROTECTED] Recipient(s) = [EMAIL PROTECTED]; Subject = Undelivered Mail Returned to Sender -goldfish Scanning Time = 06/27/2002 14:03:28 Engine/Patter

ScanMail Message: To Recipient virus found or matched file blocking setting.

2002-06-27 Thread System Attendant
ScanMail for Microsoft Exchange has taken action on the message, please refer to the contents of this message for further details. Sender = [EMAIL PROTECTED] Recipient(s) = [EMAIL PROTECTED]; Subject = Undelivered Mail Returned to Sender -goldfish Scanning Time = 06/27/2002 14:03:28 Engine/Patter

Antigen Notification:Antigen found VIRUS= Exploit.IFrame.FileDownload (Kaspersky,CA(Vet)) virus

2002-06-27 Thread Antigen
Antigen for Exchange found Unknown infected with VIRUS= Exploit.IFrame.FileDownload (Kaspersky,CA(Vet)) virus. The file is currently Removed. The message, "Undelivered Mail Returned to Sender -goldfish", was sent from Mail Delivery System and was discovered in SMTP Messages\Inbound located at

Undelivered Mail Returned to Sender -goldfish

2002-06-27 Thread Mail Delivery System
This message was created automatically by mail delivery software (Exim).A message that you sent could not be delivered to one or more of its recipients.This is a permanent error. The following address(es) failed:[EMAIL PROTECTED]For further assistance, please contact < [EMAIL PROTECTED] >If you d

Re: [Hat] using hmake with hat

2002-06-27 Thread Malcolm Wallace
Hal Daume III <[EMAIL PROTECTED]> writes: > when I use hat, hmake seems to look in the wrong place for the generated files: > > hat-trans ../Util/STM.hs > Wrote ../Util/TSTM.hs > ghc [...] ../TUtil/STM.hs > ghc-5.02.3: file `../TUtil/STM.hs' does not exist > > so it seems hat is crea

using hmake with hat

2002-06-27 Thread Hal Daume III
Hi, I'm just getting in to this hat thing and am experiencing a slight difficulty. My directory structure looks like .../projects .../projects/SemGraph .../projects/Util .../projects/NLP .../projects/FGL ... I'm in the SemGraph directory and am hmaking a program named AlignG

Re: Overloading and Literal Numerics

2002-06-27 Thread Jon Fairbairn
> Alain Cremieux wrote: > I am trying to build a functional firewall generator. The first part > describes the available protections (kernel, anti-address spoofing, etc.). > The second desribes every protocol, and the necessary rules if the > corresponding service is enabled (e.g. open the http po

ghc on debian/powermac

2002-06-27 Thread Christophe Delage
I am trying to compile ghc on my powermac (debian 3.0) apt-get source ghc5 succeed, but to do the actual compilation, it need a working ghc (and there is no binary package in the list) How can I get a (even old) working ghc ? thanks, Christophe ___ Ha

Re: Overloading and Literal Numerics

2002-06-27 Thread CREMIEUX Alain
Jon Fairbairn wrote : > Hi, > I am trying to create an overloaded function "à la Java" to be able to > call it either with a string or a number. > Ex : > definePort "http" > definePort 80 > but I have problem with restrictions in Haskell's type system > Is there a better solution ? If we knew /w

Re: Overloading and Literal Numerics

2002-06-27 Thread Jon Fairbairn
> Jon Fairbairn <[EMAIL PROTECTED]> writes: > > > data Port = Tcpmux | Nbp | Echo_ddp | Rje | Zip | Echo_tcp | ... > > deriving Enum, ... > > instance Num Port where ... > > Or, alternatively, just use Strings, and have a portFromString first > check /etc/services for a match, then

Re: Overloading and Literal Numerics

2002-06-27 Thread Ketil Z. Malde
Jon Fairbairn <[EMAIL PROTECTED]> writes: > data Port = Tcpmux | Nbp | Echo_ddp | Rje | Zip | Echo_tcp | ... > deriving Enum, ... > instance Num Port where ... Or, alternatively, just use Strings, and have a portFromString first check /etc/services for a match, then try to parse the

Re: Overloading and Literal Numerics

2002-06-27 Thread Jon Fairbairn
> Hi, > I am trying to create an overloaded function "à la Java" to be able to > call it either with a string or a number. > Ex : > definePort "http" > definePort 80 > but I have problem with restrictions in Haskell's type system > Is there a better solution ? If we knew /why/ you wanted to do t