Mail::POP3Client.

2004-09-08 Thread Nicolae.Popovici
Title: Mail::POP3Client. Hi all, I wrote a small Perl script which reads the emails from a POP3 mail server and does some automatic analyses on them. Now, my problem is that I am not able to take only the new emails ( only those UNREAD ). I was thinking of doing ( as a workaround

MAIL::POP3CLIENT QUESTION-HELP!

2003-11-27 Thread mail admin
GIVEN NEXT SNIPPET ++ use Mail::POP3Client; $pop = new Mail::POP3Client( USER = "...", PASSWORD = "", HOST = "" );my $nn=$pop-Count();print "n=$nn\n"; for ($i = 1; $i = $pop-Count(); $i++) { foreach ( $pop-Head( $i ) ) { /

Re: MAIL::POP3CLIENT QUESTION-HELP!

2003-11-27 Thread Trevor Joerges
, November 05, 2003 5:44 AM Subject: MAIL::POP3CLIENT QUESTION-HELP! GIVEN NEXT SNIPPET ++ use Mail::POP3Client; $pop = new Mail::POP3Client( USER = ..., PASSWORD = , HOST = ); my $nn=$pop-Count(); print n=$nn\n; for ($i = 1; $i = $pop-Count

Re: MAIL::POP3CLIENT QUESTION-HELP!

2003-11-27 Thread Sisyphus
Sent: Wednesday, November 05, 2003 5:44 AM Subject: MAIL::POP3CLIENT QUESTION-HELP! GIVEN NEXT SNIPPET ++ use Mail::POP3Client; $pop = new Mail::POP3Client( USER = ..., PASSWORD = , AUTH_MODE = 'PASS', DEBUG = 1; HOST

Mail::Pop3Client

2002-06-13 Thread desarrollo
Hi! Is there a way to mark messages as read inmediately after you read it with Mail::Pop3? I see the messages are shown as read only after I delete one of the incoming messages. But what if I want them marked as read just after I read them? Any help would be appreciated. Thanks in advance,

Re: Parsing Mime emails and Mail::Pop3Client

2002-06-07 Thread Trevor Joerges
Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 06, 2002 11:34 PM Subject: Parsing Mime emails and Mail::Pop3Client | Hi! | | I'm writing a script that retrieves email from POP3 servers using | Mail::Pop3. The hard thing to do is when the message is mime type

Parsing Mime emails and Mail::Pop3Client

2002-06-06 Thread desarrollo
Hi! I'm writing a script that retrieves email from POP3 servers using Mail::Pop3. The hard thing to do is when the message is mime type with attachments. It is real dificult to parse them. There's always one email message that gives trouble. Or I dont get the attachment, or if charset changes

Re: mail::pop3client erro

2001-05-17 Thread Carl Jolley
, the scripts runs without any output, what's wrong #!/usr/bin/perl use Mail::POP3Client; $pop = new Mail::POP3Client( USER= username, PASSWORD= somepassword, HOST= myhost.com

mail::pop3client error

2001-05-16 Thread TECKIES.COM Online Magazine
#!/usr/bin/perl use Mail::POP3Client; $pop = new Mail::POP3Client( USER= username, PASSWORD= somepassword, HOST= myhost.com ); for ($i = 1; $i = $pop-Count(); $i