d6af9521a0
from new maintainer Jasper Lievisse Adriaanse <jasper at nedbsd.nl> ok pvalchev@
14 lines
347 B
Plaintext
14 lines
347 B
Plaintext
This module implements an Object-Oriented interface to a POP3 server.
|
|
It is based on RFC1081.
|
|
|
|
Here is a simple example to list out the headers in your remote
|
|
mailbox:
|
|
|
|
#!/usr/bin/perl
|
|
use Mail::POP3Client;
|
|
|
|
$pop = new Mail::POP3Client("me", "mypassword", "pop3.do.main");
|
|
for ($i = 1; $i <= $pop->Count; $i++) {
|
|
print $pop->Head($i), "\n";
|
|
}
|