SSL Authentication using Net::POP3

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: SSL Authentication using Net::POP3

    "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,

    Tim
    Tim Heaney Guest

  4. #3

    Default 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,
    >
    > Tim
    Jon Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139