aboutsummaryrefslogtreecommitdiff
path: root/mail/p5-Mail-POP3Client/pkg-descr
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2001-09-20 08:43:24 +0000
committerMichael Haro <mharo@FreeBSD.org>2001-09-20 08:43:24 +0000
commit91a1772fbcd34d75bc1aa05ffae18ae5ccf5e78a (patch)
tree3203c582ae4b6b9756457e15968f9743b3289716 /mail/p5-Mail-POP3Client/pkg-descr
parente2ebb48573f5f8016a973f4dabe7adb6f2d8ee24 (diff)
downloadports-91a1772fbcd34d75bc1aa05ffae18ae5ccf5e78a.tar.gz
ports-91a1772fbcd34d75bc1aa05ffae18ae5ccf5e78a.zip
Notes
Diffstat (limited to 'mail/p5-Mail-POP3Client/pkg-descr')
-rw-r--r--mail/p5-Mail-POP3Client/pkg-descr12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/p5-Mail-POP3Client/pkg-descr b/mail/p5-Mail-POP3Client/pkg-descr
index 394af7705446..ae7a5ad53141 100644
--- a/mail/p5-Mail-POP3Client/pkg-descr
+++ b/mail/p5-Mail-POP3Client/pkg-descr
@@ -1,16 +1,16 @@
-DESCRIPTION
+DESCRIPTION
This module implements an Object-Oriented interface to a POP3 server. It is
based on RFC1081.
-USAGE
+USAGE
Here is a simple example to list out the headers in your remote mailbox:
-#!/usr/local/bin/perl
+#!/usr/bin/perl
-use Mail::POP3Client;
+use Mail::POP3Client;
$pop = new Mail::POP3Client("me", "mypassword", "pop3.do.main");
-for ($i = 1; $i <= $pop->Count; $i++) {
+for ($i = 1; $i <= $pop->Count; $i++) {
print $pop->Head($i), "\n";
-}
+}