Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Greetings, fellow monks.

The following code:

use Mail::Box::POP3; my $folder = new Mail::Box::POP3 username => $user, password => $pwd, server_name => $server, folder => $ENV{MAIL}, ;

is producing the following error:

ERROR: Cannot read POP3 from socket: ERROR: Cannot create POP3 client for inbox.

I don't have a clue why... does anyone know what I'm doing wrong here? Am I missing something important?

Replies are listed 'Best First'.
Re: Mail::Box::POP3 not working for me
by hubb0r (Pilgrim) on Feb 14, 2005 at 18:37 UTC