Re: How to use modules Eg. POP3Client.pm

2001-05-03 Thread Gil Tucker [ateliermobile]
hello world - Original Message - From: Amarnath Honnavalli Anantharamaiah <[EMAIL PROTECTED]> To: Me <[EMAIL PROTECTED]>; Perl <[EMAIL PROTECTED]> Sent: Thursday, May 03, 2001 11:11 AM Subject: RE: How to use modules Eg. POP3Client.pm > Thank you, I

RE: How to use modules Eg. POP3Client.pm

2001-05-03 Thread Amarnath Honnavalli Anantharamaiah
How can I delete the mail in the Pop3 server after I read the mails. Regards, Amar -Original Message- From: Amarnath Honnavalli Anantharamaiah [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 2:41 PM To: Me; Perl Subject:RE: How to use modules Eg. POP3Client.pm

RE: How to use modules Eg. POP3Client.pm

2001-05-03 Thread Amarnath Honnavalli Anantharamaiah
Thank you, I will proceed on this package. Regards Amar -Original Message- From: Me [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 2:05 PM To: Amarnath Honnavalli Anantharamaiah; Perl Subject:Re: How to use modules Eg. POP3Client.pm Your problem is a missing

Re: How to use modules Eg. POP3Client.pm

2001-05-03 Thread Me
Your problem is a missing semicolon at the end of the 'use' line. This makes perl think the following lines ($pop = ...) are a series of parameters to the 'use' pragma. The parameters to the 'use' pragma, after the first one (the module), are a list of particular functions, variables, etc. that y

How to use modules Eg. POP3Client.pm

2001-05-03 Thread Amarnath Honnavalli Anantharamaiah
I am using this modules (e.g. POP3Client module) for first time. I have a simple program, to print the no of messages in the mail server. It is giving error. Any help is appreciated.