aboutsummaryrefslogtreecommitdiff
path: root/mail/tpop3d
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2007-04-18 06:08:10 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2007-04-18 06:08:10 +0000
commit0cd3bdb74afc1bc5be44e8d12f19370c3c1a7652 (patch)
tree5ba6d1c516f44fd571b354d07da4334ddc521c91 /mail/tpop3d
parent19f6aeb87e6339b094d402716f44975f443f85ad (diff)
downloadports-0cd3bdb74afc1bc5be44e8d12f19370c3c1a7652.tar.gz
ports-0cd3bdb74afc1bc5be44e8d12f19370c3c1a7652.zip
- Add /etc/passwd authentication method support
- Bump PORTREVISION PR: 111806 Submitted by: Alexander Logvinov <ports AT logvinov.com> Approved by: Boris Kovalenko <boris AT tagnet.ru> (maintainer), clsung (mentor)
Notes
Notes: svn path=/head/; revision=190264
Diffstat (limited to 'mail/tpop3d')
-rw-r--r--mail/tpop3d/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/tpop3d/Makefile b/mail/tpop3d/Makefile
index 79f2ae344cbb..1104a65c68f1 100644
--- a/mail/tpop3d/Makefile
+++ b/mail/tpop3d/Makefile
@@ -7,7 +7,7 @@
PORTNAME= tpop3d
PORTVERSION= 1.5.3
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= mail
MASTER_SITES= http://www.ex-parrot.com/~chris/tpop3d/
@@ -26,7 +26,8 @@ OPTIONS= MYSQL "Use MySQL authentication" off \
PGSQL "Use PgSQL authentication" off \
LDAP "Use LDAP authentication" off \
PERLAUTH "Use Perl authentication" off \
- FLATAUTH "Enable /etc/passwd-style authentication" off \
+ PASSWDAUTH "Use /etc/passwd authentication" off \
+ FLATAUTH "Use /etc/passwd-style flat file authentication" off \
MAILDIR "Compile Maildir support" on \
DRAC "Enable DRAC RFC for POP-before-SMTP relaying" off \
FIX_PERLAUTH "Only try it if perl-auth coredumps" off
@@ -67,6 +68,10 @@ CONFIGURE_ARGS+= --enable-auth-perl
CONFIGURE_ARGS+= --enable-auth-flatfile
.endif
+.if defined(WITH_PASSWDAUTH)
+CONFIGURE_ARGS+= --enable-auth-passwd
+.endif
+
.if !defined(WITHOUT_MAILDIR)
CONFIGURE_ARGS+= --enable-mbox-maildir
.endif