Re: GSSAPI programming help

2006-05-22 Thread Dennis Putnam
#x27; ); $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-- Denni

Re: GSSAPI programming help

2006-05-22 Thread Dennis Putnam
Did Graham or anyone ever post an answer to this question? I am still stuck trying to figure out how to get the SASL object to the POP authentication. On May 18, 2006, at 2:51 PM, Achim Grolms wrote: On Thursday 18 May 2006 13:27, Dennis Putnam wrote: I was told some of you folks are

Re: GSSAPI programming help

2006-05-18 Thread Dennis Putnam
, 2006, at 12:14 PM, Quanah Gibson-Mount wrote: --On Thursday, May 18, 2006 7:27 AM -0400 Dennis Putnam <[EMAIL PROTECTED]> wrote: I was told some of you folks are working with Kerberos auth using GSSAPI. I am trying to do the same thing with POP rather then LDAP and I am hoping someon

GSSAPI programming help

2006-05-18 Thread Dennis Putnam
I was told some of you folks are working with Kerberos auth using GSSAPI. I am trying to do the same thing with POP rather then LDAP and I am hoping someone here might be able to help me. It is not obvious to me what I really need to pass in the 'auth' method so I suspect that is the crux o