Ask a Question related to PERL Modules, Design and Development.
-
Jon #1
SSL Authentication using Net::POP3
Hello
I am trying to find a perl module that allows me to retrieve my email
from a server that requires SSL authentication. I am currently using
Net::POP3 and I tried all the different types of logging in such as
auth(..), login(..), and apop(..) which are sub routines defined in
Net::POP3.
None worked
Thanks
-Jon
Jon Guest
-
Net::POP3
Hi, I am trying to count email messages in the mailbox and read their headers. In case that there are some messages on the POP3 server and they... -
Pop3 component..?
I would imagine that I've posted this before and just didn't see the thread in my news reader. Apologies if this is a duplicate post. The next... -
pop3
Hii I configured pop3 daemon on aix 4.3 all users connect this server and get emails except root user I am receiving "bad login" error message... -
Securing POP3
Greetings! What options do I have for securing POP3 on a Debian server? I've got clients connecting with all varieties of platforms (proprietary... -
Suggestion for pop3
Hello, what can you suggest for a pop3server with ssl support? Im using a default exim package, I was hoping it's a package too. -- Thank... -
Tim Heaney #2
Re: SSL Authentication using Net::POP3
"Jon" <TheFakeJon@gmail.com> writes:
How about Mail::POP3Client?>
> I am trying to find a perl module that allows me to retrieve my email
> from a server that requires SSL authentication.
[url]http://search.cpan.org/~sdowd/Mail-POP3Client-2.17/POP3Client.pm[/url]
It will need IO::Socket::SSL (which in turn will need Net::SSLeay) for
SSL authentication to work.
use Mail::POP3Client;
$pop = Mail::POP3Client->new(USER => 'TheFakeJon@gmail.com',
PASSWORD => $passwd,
HOST => 'pop.gmail.com',
USESSL => true,
);
print "You have ", $pop->Count, " messages\n";
I hope this helps,
Tim
Tim Heaney Guest
-
Jon #3
Re: SSL Authentication using Net::POP3
thanks
Tim Heaney wrote:> "Jon" <TheFakeJon@gmail.com> writes:>> >
> > I am trying to find a perl module that allows me to retrieve my email
> > from a server that requires SSL authentication.
> How about Mail::POP3Client?
>
> [url]http://search.cpan.org/~sdowd/Mail-POP3Client-2.17/POP3Client.pm[/url]
>
> It will need IO::Socket::SSL (which in turn will need Net::SSLeay) for
> SSL authentication to work.
>
> use Mail::POP3Client;
>
> $pop = Mail::POP3Client->new(USER => 'TheFakeJon@gmail.com',
> PASSWORD => $passwd,
> HOST => 'pop.gmail.com',
> USESSL => true,
> );
> print "You have ", $pop->Count, " messages\n";
>
> I hope this helps,
>
> TimJon Guest



Reply With Quote

