mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
17 lines
489 B
Plaintext
17 lines
489 B
Plaintext
DESCRIPTION
|
|
|
|
This module implements an Object-Oriented interface to a POP3 server. It is
|
|
based on RFC1081.
|
|
|
|
USAGE
|
|
|
|
Here is a simple example to list out the headers in your remote mailbox:
|
|
|
|
#!/usr/local/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";
|
|
}
|