diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-04-03 05:52:00 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-04-03 05:52:00 +0000 |
commit | 687a6901d6def1f905d43f23b3388ee3c429d154 (patch) | |
tree | 35eb065e4e552cb39d0578f47abcf51523428c44 /mail/teapop/patches | |
parent | 30afc75b8737dd54d3b76a7e99ec59f94be74704 (diff) | |
download | pkgsrc-687a6901d6def1f905d43f23b3388ee3c429d154.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/patches')
-rw-r--r-- | mail/teapop/patches/patch-aa | 29 |
1 files changed, 14 insertions, 15 deletions
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 |