in reply to Re^2: Mail::POP3Client email server to use
in thread Mail::POP3Client email server to use
use Mail::POP3Client; $pop = new Mail::POP3Client( USER => "username", PASSWORD => "password", HOST => "server.domain.tld", AUTH_MODE => "PASS", DEBUG => 1 ); $MailState = $pop->State; if ( $MailState eq 'AUTHORIZATION' ) { die "\n\nBad user name or password!\n"; } elsif ( $MailState eq 'DEAD' ) { die "\n\nMail server unreachable or unavailable!\n"; } $continue = "false"; until ( $continue = "true" ) { ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Mail::POP3Client email server to use
by skx (Parson) on Jul 15, 2005 at 13:25 UTC | |
by Anonymous Monk on Jul 15, 2005 at 16:31 UTC | |
|
Re^4: Mail::POP3Client email server to use
by Anonymous Monk on Jul 15, 2005 at 16:29 UTC | |
by socketdave (Curate) on Jul 15, 2005 at 16:59 UTC | |
by Anonymous Monk on Jul 22, 2005 at 15:11 UTC |