Is this your entire script? No
use strict; or
use warnings; Did you read the module documentation? Did you try the example that comes with the distribution (demos/pop3)? Why are you declaring
$pop twice, once after the other, the difference being that the second declaration includes the
Timeout option in the constructor? This looks like a copy and paste from the documentation, rather than reading the documentation and understanding what it is telling you. On this note, since you are having problems you could enable debugging:
my $pop = Net::POP3->new('pop3host', Timeout => 60, Debug => 1);
Are you sure the server in question supports pinging? Have you checked via the
capabilities() method mentioned in the
documentation?
Perhaps taking a step back and rereading the documentation, and reading some of the basic
tutorials here will help you.
Please read
How do I post a question effectively?,
Writeup Formatting Tips and the
PerlMonks FAQ.
Martin
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.