1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

- 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)
This commit is contained in:
Li-Wen Hsu 2007-04-18 06:08:10 +00:00
parent 19f6aeb87e
commit 0cd3bdb74a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=190264

View File

@ -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