aboutsummaryrefslogtreecommitdiffstats
path: root/mail/popa3d/files
diff options
context:
space:
mode:
authorjedgar <jedgar@FreeBSD.org>2000-02-19 21:21:54 +0800
committerjedgar <jedgar@FreeBSD.org>2000-02-19 21:21:54 +0800
commit54da70226a3fc8c7df035faaec72741a79c91354 (patch)
treed77c36dc3fb91c2ae5632f849358988623cbb580 /mail/popa3d/files
parent4310f46c3e0c3f5b5cf623a4937f226f352771d1 (diff)
downloadfreebsd-ports-gnome-54da70226a3fc8c7df035faaec72741a79c91354.tar.gz
freebsd-ports-gnome-54da70226a3fc8c7df035faaec72741a79c91354.tar.zst
freebsd-ports-gnome-54da70226a3fc8c7df035faaec72741a79c91354.zip
popa3d is a POP3 server with the following goals:
1. Security (to the extent that is possible with POP3 at all, of course). 2. Reliability (again, as limited by the mailbox format and the protocol). 3. RFC compliance (slightly relaxed to work with real-world POP3 clients). 4. Performance (limited by the more important goals, above). PR: 16652 Submitted by: Sergey Samoyloff <techline@hotmail.ru>
Diffstat (limited to 'mail/popa3d/files')
-rw-r--r--mail/popa3d/files/patch-aa28
-rw-r--r--mail/popa3d/files/patch-ab24
2 files changed, 52 insertions, 0 deletions
diff --git a/mail/popa3d/files/patch-aa b/mail/popa3d/files/patch-aa
new file mode 100644
index 000000000000..eac93b14a7f4
--- /dev/null
+++ b/mail/popa3d/files/patch-aa
@@ -0,0 +1,28 @@
+--- params.h.orig Tue Feb 1 09:16:24 2000
++++ params.h Sun Feb 6 15:24:46 2000
+@@ -62,7 +62,7 @@
+ * Do we have shadow passwords? (Not for *BSD.)
+ * Note: password aging is not supported.
+ */
+-#define AUTH_SHADOW 1
++#define AUTH_SHADOW 0
+
+ /*
+ * A salt used to waste some CPU time on dummy crypt(3) calls and make
+@@ -81,14 +81,14 @@
+ * Your mail spool directory. Note: only local (non-NFS) mode 775 mail
+ * spools are currently supported.
+ */
+-#define MAIL_SPOOL_PATH "/var/spool/mail"
++#define MAIL_SPOOL_PATH "/var/mail"
+
+ /*
+ * How do we talk to syslogd? These should be fine for most systems.
+ */
+ #define SYSLOG_IDENT "popa3d"
+ #define SYSLOG_OPTIONS LOG_PID
+-#define SYSLOG_FACILITY LOG_DAEMON
++#define SYSLOG_FACILITY LOG_MAIL
+ #define SYSLOG_PRIORITY LOG_NOTICE
+
+ /*
diff --git a/mail/popa3d/files/patch-ab b/mail/popa3d/files/patch-ab
new file mode 100644
index 000000000000..fa30f9236e90
--- /dev/null
+++ b/mail/popa3d/files/patch-ab
@@ -0,0 +1,24 @@
+--- Makefile.orig Tue Feb 1 06:56:46 2000
++++ Makefile Sun Feb 6 13:31:49 2000
+@@ -1,9 +1,9 @@
+-CC = gcc
++CC?= gcc
+ LD = gcc
+ RM = rm -f
+ CFLAGS = -c -Wall -O2 -fomit-frame-pointer
+-LDFLAGS = -s
+-#LDFLAGS = -s -lcrypt
++#LDFLAGS = -s
++LDFLAGS = -s -lcrypt
+
+ PROJ = popa3d
+ OBJS = md5/md5.o \
+@@ -12,7 +12,7 @@
+ protocol.o database.o mailbox.o \
+ misc.o
+
+-popa3d: $(OBJS)
++all: $(OBJS)
+ $(LD) $(LDFLAGS) $(OBJS) -o popa3d
+
+ md5/md5.o: md5/md5.c md5/md5.h