cormanaz has asked for the wisdom of the Perl Monks concerning the following question:
I get the following tranlog output and error message:use strict; use Mail::POP3Client; my $pop = new Mail::POP3Client( USER => "uid", PASSWORD => "pw", HOST => "mail.*****.com" ); print join("\n",@{ $pop->{'tranlog'} }); $pop->Close();
+OK <281**.1103124993@pop03.****.******.net> APOP uid 431b9d95123c88179f74489d3549f4** -ERR authorization failed CAPA USER uid Use of uninitialized value in pattern match (m//) at C:/Perl/site/lib/ +Mail/POP3Client.pm line 1008, <GEN1> line 2.
When per suggestion of the FAQ I add AUTH_MODE => 'PASS' to the constructor, I get:
+OK <121**.1103125459@pop02.****.******.net> USER uid +OK PASS pw -ERR authorization failed
uid and pw are known good. Any ideas what I am doing wrong?
Many thanks in advance....
Steve
2004-12-15 Janitored by Arunbear - changed pre tags to code tags around error messages
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: POP3Client connection problems
by redhotpenguin (Deacon) on Dec 15, 2004 at 16:38 UTC | |
by cormanaz (Deacon) on Dec 15, 2004 at 16:48 UTC | |
|
Re: POP3Client connection problems
by traveler (Parson) on Dec 15, 2004 at 17:37 UTC | |
|
Re: POP3Client connection problems
by zentara (Cardinal) on Dec 16, 2004 at 12:33 UTC |