diff options
author | Andrej Zverev <az@FreeBSD.org> | 2014-01-05 16:33:44 +0000 |
---|---|---|
committer | Andrej Zverev <az@FreeBSD.org> | 2014-01-05 16:33:44 +0000 |
commit | 32fbdf5e2a99c45afa117b8ab1d684e0ab2b7cfa (patch) | |
tree | f6b9f1686e2aa7f145bfb8e220b5a1b7cc097532 /mail/p5-Mail-POP3Client/pkg-descr | |
parent | 855ee7985c4f46109eb6bc0d5ebd34c0ec6c803c (diff) | |
download | ports-32fbdf5e2a99c45afa117b8ab1d684e0ab2b7cfa.tar.gz ports-32fbdf5e2a99c45afa117b8ab1d684e0ab2b7cfa.zip |
Notes
Diffstat (limited to 'mail/p5-Mail-POP3Client/pkg-descr')
-rw-r--r-- | mail/p5-Mail-POP3Client/pkg-descr | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/mail/p5-Mail-POP3Client/pkg-descr b/mail/p5-Mail-POP3Client/pkg-descr index 76646836f8de..7fbfadf10f89 100644 --- a/mail/p5-Mail-POP3Client/pkg-descr +++ b/mail/p5-Mail-POP3Client/pkg-descr @@ -1,18 +1,4 @@ -DESCRIPTION - -This module implements an Object-Oriented interface to a POP3 server. It is +This module implements an Object-Oriented interface to a POP3 server. It is based on RFC1939. -USAGE - -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"; -} - WWW: http://search.cpan.org/dist/Mail-POP3Client/ |