in reply to Login Error
-- slurpuse Net::POP3; my $pop = Net::POP3->new("pluto.runbox.com"); if ($pop) { my $msg = $pop->login("test21","test"); if ($msg) { $msg eq '0E0' and $msg = 0; print $msg." messages\n"; } else { print "Couldn't read...\n" } $pop->quit(); } else { print "Couldn't connect...\n" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Login Error
by Fastolfe (Vicar) on Aug 01, 2000 at 22:40 UTC |