summaryrefslogtreecommitdiff
path: root/mail/popd
diff options
context:
space:
mode:
Diffstat (limited to 'mail/popd')
-rw-r--r--mail/popd/Makefile28
-rw-r--r--mail/popd/distinfo2
-rw-r--r--mail/popd/files/patch-lib__funcs.c20
-rw-r--r--mail/popd/files/patch-lib__mbox_maildir.c11
-rw-r--r--mail/popd/files/patch-lib__mbox_mbf.c30
-rw-r--r--mail/popd/files/patch-lib__private.h12
-rw-r--r--mail/popd/files/patch-src__config.h10
-rw-r--r--mail/popd/files/patch-src__popd.88
-rw-r--r--mail/popd/files/patch-src__popd.c15
-rw-r--r--mail/popd/files/patch-src__popd.conf.58
-rw-r--r--mail/popd/files/patch-src_authenticate.c13
-rw-r--r--mail/popd/pkg-descr9
-rw-r--r--mail/popd/pkg-plist7
13 files changed, 0 insertions, 173 deletions
diff --git a/mail/popd/Makefile b/mail/popd/Makefile
deleted file mode 100644
index 4f3c762f1320..000000000000
--- a/mail/popd/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# Created by: ianf@za.uu.net
-# $FreeBSD$
-
-PORTNAME= popd
-PORTVERSION= 2.2.2a
-PORTREVISION= 5
-CATEGORIES= mail
-MASTER_SITES= ftp://ftp3.za.freebsd.org/pub/popd/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Very fast, highly configurable POP3 server (fully RFC1939 compliant)
-
-MAN5= popd.conf.5
-MAN8= popd.8
-
-USE_LDCONFIG= yes
-MANCOMPRESSED= maybe
-.if defined(NOPROFILE)
-PLIST_SUB= NOPROFILE="@comment "
-.else
-PLIST_SUB= NOPROFILE=""
-.endif
-
-NO_STAGE= yes
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/src/popd.conf.default ${PREFIX}/etc/.
-
-.include <bsd.port.mk>
diff --git a/mail/popd/distinfo b/mail/popd/distinfo
deleted file mode 100644
index 336a3e6b9940..000000000000
--- a/mail/popd/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (popd-2.2.2a.tar.gz) = 59236743d9c830ff1d70b5de9af3492850cb075dcc7134a62537fc6497393c9b
-SIZE (popd-2.2.2a.tar.gz) = 37390
diff --git a/mail/popd/files/patch-lib__funcs.c b/mail/popd/files/patch-lib__funcs.c
deleted file mode 100644
index ff835dd6eb14..000000000000
--- a/mail/popd/files/patch-lib__funcs.c
+++ /dev/null
@@ -1,20 +0,0 @@
-$FreeBSD$
-
---- lib/funcs.c.orig Mon Mar 3 21:10:19 2003
-+++ lib/funcs.c Wed Oct 15 11:18:01 2003
-@@ -198,11 +198,11 @@
- len = vsnprintf(p, MAXBUFLEN - (buffer - p), format, pvar);
- }
- va_end(pvar);
-- if (p - buffer + len + 3 > MAXBUFLEN) {
-- xwrite(buffer, p - buffer + len);
-+ p += len;
-+ if (p - buffer + 3 > MAXBUFLEN) {
-+ xwrite(buffer, p - buffer);
- p = buffer;
- }
-- p += len;
- *p++ = '\r';
- *p++ = '\n';
- if (flag == SEND_FLUSH) {
-
diff --git a/mail/popd/files/patch-lib__mbox_maildir.c b/mail/popd/files/patch-lib__mbox_maildir.c
deleted file mode 100644
index e3a164cb8f2d..000000000000
--- a/mail/popd/files/patch-lib__mbox_maildir.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib/mbox_maildir.c.orig Tue Jun 24 14:37:19 2003
-+++ lib/mbox_maildir.c Tue Jun 24 14:38:18 2003
-@@ -190,7 +190,7 @@
- (MDIR_F_EXPIRE | MDIR_F_REMOVE) &&
- cxn->flags & MAILBOX_F_FALSEUIDL ?
- time(NULL) : mbox->msg[mbox->count].d_time,
-- mbox->msg[mbox->count].path,
-+ dp->d_name,
- mbox->msg[mbox->count].bytes);
- MD5Init(&context);
- MD5Update(&context, (unsigned char *)uidldat,
diff --git a/mail/popd/files/patch-lib__mbox_mbf.c b/mail/popd/files/patch-lib__mbox_mbf.c
deleted file mode 100644
index 4387691da88a..000000000000
--- a/mail/popd/files/patch-lib__mbox_mbf.c
+++ /dev/null
@@ -1,30 +0,0 @@
---- ./lib/mbox_mbf.c.orig 2003-03-05 02:33:12.000000000 -0500
-+++ ./lib/mbox_mbf.c 2009-06-23 19:35:15.499808776 -0400
-@@ -151,7 +151,10 @@
- bytes -= len;
- offset += len;
- q[buffleft] = '\0';
-- p = strchr(buffer, '\n');
-+ if ((p = strchr(buffer, '\n')) == NULL) {
-+ p = q + buffleft;
-+ continue;
-+ }
- }
- *p++ = '\0';
- if (*line == '\0') {
-@@ -382,7 +385,14 @@
- len = read(mbox->fd, offset, buffleft);
- bytes -= len;
- offset[len] = '\0';
-- p = strchr(buffer, '\n');
-+ if ((p = strchr(buffer, '\n')) == NULL) {
-+ p = offset + len;
-+ if( (p - buffer) == 1 && buffer[0] == '.' )
-+ sendline(SEND_BUF, "..");
-+ else
-+ sendline(SEND_BUF, "%s", buffer);
-+ continue;
-+ }
- }
- *p++ = '\0';
- if (line[0] == '.' && line[1] == '\0') {
diff --git a/mail/popd/files/patch-lib__private.h b/mail/popd/files/patch-lib__private.h
deleted file mode 100644
index e51952619a36..000000000000
--- a/mail/popd/files/patch-lib__private.h
+++ /dev/null
@@ -1,12 +0,0 @@
---- ./lib/private.h.orig 2001-10-10 05:48:11.000000000 -0400
-+++ ./lib/private.h 2009-06-23 19:35:15.499808776 -0400
-@@ -26,6 +26,9 @@
- * $Id: private.h,v 1.1 2001/10/10 09:48:11 ianf Exp $
- */
-
-+#undef NULL
-+#define NULL 0
-+
- #define TRUE 1
- #define FALSE 0
- #define MAXINCR 20
diff --git a/mail/popd/files/patch-src__config.h b/mail/popd/files/patch-src__config.h
deleted file mode 100644
index d5addfaa55d5..000000000000
--- a/mail/popd/files/patch-src__config.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- ./src/config.h.orig 2002-11-20 05:27:49.000000000 -0500
-+++ ./src/config.h 2009-06-23 19:35:15.500808903 -0400
-@@ -26,6 +26,7 @@
- * $Id: config.h,v 1.20 2002/11/20 10:27:49 ianf Exp $
- */
-
-+#undef NULL
- #define NULL 0
- #define TRUE 1
- #define FALSE 0
diff --git a/mail/popd/files/patch-src__popd.8 b/mail/popd/files/patch-src__popd.8
deleted file mode 100644
index f9b96e85fe0b..000000000000
--- a/mail/popd/files/patch-src__popd.8
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/popd.8.orig Wed Dec 10 18:50:19 2003
-+++ src/popd.8 Wed Dec 10 18:50:50 2003
-@@ -256,4 +256,4 @@
- .An Ian Freislich .
- .Pp
- Send bug reports to
--.An Ian Freislich Aq ianf@za.uu.net .
-+.An Ian Freislich Aq ian@freislich.nom.za .
diff --git a/mail/popd/files/patch-src__popd.c b/mail/popd/files/patch-src__popd.c
deleted file mode 100644
index 2216463c13a5..000000000000
--- a/mail/popd/files/patch-src__popd.c
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: src/popd.c
-diff -u -p src/popd.c.orig src/popd.c
---- src/popd.c.orig Fri Jan 24 21:01:25 2003
-+++ src/popd.c Wed Jun 1 09:00:55 2005
-@@ -54,6 +54,10 @@
- #include "signals.h"
- #include "proxy.h"
-
-+#ifndef NI_WITHSCOPEID
-+#define NI_WITHSCOPEID 0
-+#endif
-+
- /* global variables */
- extern FILE *yyin;
- extern int yyparse(void);
diff --git a/mail/popd/files/patch-src__popd.conf.5 b/mail/popd/files/patch-src__popd.conf.5
deleted file mode 100644
index 4c56b744b11c..000000000000
--- a/mail/popd/files/patch-src__popd.conf.5
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/popd.conf.5.orig Wed Dec 10 18:50:24 2003
-+++ src/popd.conf.5 Wed Dec 10 18:50:53 2003
-@@ -544,4 +544,4 @@
- .An Ian Freislich .
- .Pp
- Send bug reports to
--.An Ian Freislich Aq ianf@za.uu.net .
-+.An Ian Freislich Aq ian@freislich.nom.za .
diff --git a/mail/popd/files/patch-src_authenticate.c b/mail/popd/files/patch-src_authenticate.c
deleted file mode 100644
index e174169a563d..000000000000
--- a/mail/popd/files/patch-src_authenticate.c
+++ /dev/null
@@ -1,13 +0,0 @@
-
-$FreeBSD$
-
---- src/authenticate.c.orig Sun Aug 22 16:49:10 2004
-+++ src/authenticate.c Sun Aug 22 16:49:28 2004
-@@ -231,6 +231,7 @@
- case RAD_ACCESS_REJECT:
- case RAD_ACCESS_CHALLENGE:
- /* Fall through */
-+ break;
- }
- rad_close(authreq);
- return(FALSE);
diff --git a/mail/popd/pkg-descr b/mail/popd/pkg-descr
deleted file mode 100644
index a3d9c2fdb6ac..000000000000
--- a/mail/popd/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-The popd server is a fast, full, BSD-licensed RFC1939 implementation.
-
-Popd allows mail for users in multiple domains to be served from
-one server in `virtual' mode. It allows for mail to be expired
-from the server when users collect mail older than a specified
-time, falsification of UIDL information and removal of old mail.
-
-Additional features include SSL and proxy support, as well as
-support for a variety of mailbox formats and bulletins.
diff --git a/mail/popd/pkg-plist b/mail/popd/pkg-plist
deleted file mode 100644
index cfce94ba2cb9..000000000000
--- a/mail/popd/pkg-plist
+++ /dev/null
@@ -1,7 +0,0 @@
-etc/popd.conf.default
-include/poputil.h
-lib/libpoputil.a
-lib/libpoputil.so
-lib/libpoputil.so.1
-%%NOPROFILE%%lib/libpoputil_p.a
-libexec/popd