diff options
author | zuntum <zuntum> | 2001-04-03 05:52:00 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-04-03 05:52:00 +0000 |
commit | 1c0f508d609d417904d4353cfaef1b7e821d8be9 (patch) | |
tree | 35eb065e4e552cb39d0578f47abcf51523428c44 /mail/teapop | |
parent | b14322564f5ccffb5c1fb28960f1c5582c42412e (diff) | |
download | pkgsrc-1c0f508d609d417904d4353cfaef1b7e821d8be9.tar.gz |
Update teapop to 0.3.0
0.3.0 * New version system.
* The license has been modified, yet again to comply with BSD-type
licenses.
! Clean up of Makefiles and dependencies added.
+ Teapop will sleep for 3 seconds after a failed login to slow
down "brute force" attackers.
+ Maildir support added.
+ Added support for reporting clients IP to a whoson server,
after a successful authentication.
+ Support for AIX.
(Patch by: "Oleg O. Orlov" <OOO@vmts.ru>)
! Changed the htpasswd authentication method so it will ignore
anything after the two first fields. This makes Teapop also
support "real" passwd files.
(Patch by: Grant Kaufmann <grantcode@netizen.co.za>)
* Released: 2-Apr-2001
Maildir support was added, so I'm glad to take over maintainership.
Diffstat (limited to 'mail/teapop')
-rw-r--r-- | mail/teapop/Makefile | 6 | ||||
-rw-r--r-- | mail/teapop/files/md5 | 4 | ||||
-rw-r--r-- | mail/teapop/files/patch-sum | 4 | ||||
-rw-r--r-- | mail/teapop/patches/patch-aa | 29 |
4 files changed, 21 insertions, 22 deletions
diff --git a/mail/teapop/Makefile b/mail/teapop/Makefile index c7a1ac99eeb..5bc808a1ea2 100644 --- a/mail/teapop/Makefile +++ b/mail/teapop/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/03/24 06:17:06 zuntum Exp $ +# $NetBSD: Makefile,v 1.2 2001/04/03 05:52:00 zuntum Exp $ -DISTNAME= teapop-0.28 +DISTNAME= teapop-0.3.0 CATEGORIES= mail MASTER_SITES= ftp://ftp.toontown.org/pub/teapop/ \ http://www.toontown.org/pub/teapop/ -MAINTAINER= packages@netbsd.org +MAINTAINER= zuntum@netbsd.org HOMEPAGE= http://www.toontown.org/teapop/ COMMENT= Yet another RFC1939 compliant POP3 server diff --git a/mail/teapop/files/md5 b/mail/teapop/files/md5 index 014d1355504..40b93035ad0 100644 --- a/mail/teapop/files/md5 +++ b/mail/teapop/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.1.1.1 2001/03/24 06:17:06 zuntum Exp $ +$NetBSD: md5,v 1.2 2001/04/03 05:52:00 zuntum Exp $ -SHA1 (teapop-0.28.tar.gz) = 3fd778bc367e4910e1ec50bffa2e28a8f9b4562a +SHA1 (teapop-0.3.0.tar.gz) = d4cb0e61565db490edf390cb5b00b5491869ed80 diff --git a/mail/teapop/files/patch-sum b/mail/teapop/files/patch-sum index ccd03b850e7..228fbc12a3d 100644 --- a/mail/teapop/files/patch-sum +++ b/mail/teapop/files/patch-sum @@ -1,3 +1,3 @@ -$NetBSD: patch-sum,v 1.1.1.1 2001/03/24 06:17:06 zuntum Exp $ +$NetBSD: patch-sum,v 1.2 2001/04/03 05:52:00 zuntum Exp $ -SHA1 (patch-aa) = 9eaa0acaf221675c44056a6385586a735ef80cef +SHA1 (patch-aa) = 70d851d3928d23d54da64b41cc5a7d76c23bb674 diff --git a/mail/teapop/patches/patch-aa b/mail/teapop/patches/patch-aa index d3ab55a4a0a..b3df1ff23d9 100644 --- a/mail/teapop/patches/patch-aa +++ b/mail/teapop/patches/patch-aa @@ -1,23 +1,22 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/03/24 06:17:06 zuntum Exp $ +$NetBSD: patch-aa,v 1.2 2001/04/03 05:52:01 zuntum Exp $ ---- etc/Makefile.in.orig Sun Jun 4 14:40:00 2000 +--- etc/Makefile.in.orig Fri Mar 30 22:49:49 2001 +++ etc/Makefile.in -@@ -23,15 +23,9 @@ +@@ -23,15 +23,8 @@ fi install: build -- @echo Checking for existing teapop.passwd; \ -- if [ -f ${sysconfdir}/teapop.passwd ]; then \ -- echo "Exists...NOT installing teapop.passwd"; \ -- else \ -- echo "Not found, installing teapop.passwd"; \ -- ${INSTALL} -d ${sysconfdir}; \ -- ${INSTALL} teapop.passwd ${sysconfdir}; \ -- ${CHMOD} 0755 ${sysconfdir}/teapop.passwd; \ +- @ echo Checking for existing teapop.passwd; \ +- if [ -f ${sysconfdir}/teapop.passwd ]; then \ +- echo "Exists...NOT installing teapop.passwd"; \ +- else \ +- echo "Not found, installing teapop.passwd"; \ +- ${INSTALL} -d ${sysconfdir}; \ +- ${INSTALL} teapop.passwd ${sysconfdir}; \ +- ${CHMOD} 0755 ${sysconfdir}/teapop.passwd; \ - fi -+ ${INSTALL} -d ${prefix}/share/examples/teapop; \ -+ ${BSD_INSTALL_DATA} teapop.passwd ${prefix}/share/examples/teapop; \ -+ ${CHMOD} 0755 ${prefix}/share/examples/teapop/teapop.passwd; \ ++ ${BSD_INSTALL_DATA_DIR} ${prefix}/share/examples/teapop ++ ${BSD_INSTALL_DATA} teapop.passwd ${prefix}/share/examples/teapop makefile: ../config/timestamp - @echo Updating Makefile + @ echo Updating Makefile |