Doesn't work. Nothing is in '$!' but the POP log says "badlogin".

Note that this is OS X Server (10.4.6), if that matters.

On May 22, 2006, at 1:22 PM, Achim Grolms wrote:

On Monday 22 May 2006 19:05, you wrote:
Did Graham or anyone ever post an answer to this question?

Yes, Graham and anyone answered on Thursday.
Me wrote on
Thursday 22:07:08

If the Net::POP3 auth() method accepts

a SASL object this should work:

 #------usage example--------------
 use Authen::SASL 2.10;
 use Net::POP3;

 my $sasl = Authen::SASL->new( mechanism => 'GSSAPI' );
 $pop = Net::POP3->new('pop3host');
 $pop->auth($sasl);

 my $msgnums = $pop->list; # hashref of msgnum => size
 foreach my $msgnum (keys %$msgnums) {
     my $msg = $pop->get($msgnum);
     print @$msg;
 }
 $pop->quit;
#------end of usage example--------------

Dennis, please try and let us know if this works!

Achim



Dennis Putnam
Sr. IT Systems Administrator
AIM Systems, Inc.
11675 Rainwater Dr., Suite 200
Alpharetta, GA  30004
Phone: 678-240-4112
Main Phone: 678-297-0700
FAX: 678-297-2666 or 770-576-1000
The information contained in this e-mail and any attachments is strictly confidential. If you are not the intended recipient, any use, dissemination, distribution, or duplication of any part of this e-mail or any attachment is prohibited. If you are not the intended recipient, please notify the sender by return e-mail and delete all copies, including the attachments.


Reply via email to