use Mail::POP3Client;
$pop = new Mail::POP3Client( USER => "TheUser", PASSWORD => "MyPassword", HOST => "Mail.Host.com");
successfully for some time to read and parse email off a remote server.
I was asked to change the server, all the other code stayed the same except for:
$pop = new Mail::POP3Client( USER => "AnotherUserName",
PASSWORD => "AnotherPassword",
HOST => "Mail.AnotherHost.Com");
and now I get:
"Can't locate MD5.pm in @INC" and so on. I did a CPAN install on the MD5 module and it said that the module is already installed correctly.
This has me totally confused.
Thanks in advance for any help.
Gregg
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]