in reply to Re: Net::POP3 doesn't connect
in thread Net::POP3 doesn't connect

Hi.

Thank you for the response. I added the code exactly how you had it and it made no difference in the output. The only output is mine saying it can't connect to the server.

Any other ideas?

Replies are listed 'Best First'.
Re^3: Net::POP3 doesn't connect
by Eliya (Vicar) on Mar 18, 2011 at 19:16 UTC

    You seem to be running this as a CGI script... so you might want to look in the webserver's error_log, because (AFAIK) the debug prints will go to STDERR.

    Alternatively, redirect STDERR to STDOUT, so the debug messages will also be sent to the browser.  I.e. modify your script as follows:

    #!/usr/bin/perl use warnings; use strict; use CGI qw(:standard); use CGI::Carp qw(fatalsToBrowser carpout); carpout(\*STDOUT); ...