1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

Enabled passwd lookups by default; while the world is moving away from

real users for mail, there are still plenty of mail servers that use
real users, and the lookup costs 292 bytes in the executable.  The
feature can be disabled with WITHOUT_PASSWD.

Bump PORTREVISION accordingly.
This commit is contained in:
Sheldon Hearn 2004-02-18 08:48:00 +00:00
parent 7813ae1689
commit 4d47d93949
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=101306

View File

@ -7,6 +7,7 @@
PORTNAME= exim
PORTVERSION= 4.30
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_EXIM}
MASTER_SITE_SUBDIR= exim4
@ -145,14 +146,15 @@ WITH_DEFAULT_CHARSET?= ISO-8859-1
#WITHOUT_MAILSTORE= yes
#WITHOUT_MBX= yes
#
# Define WITHOUT_CDB, WITHOUT_DNSDB, WITHOUT_DSEARCH, WILD_LSEARCH and
# WITHOUT_NIS to disable support for CDB-style, DNS-style, directory-list,
# wildcarded-file and NIS lookups respectively.
# Define WITHOUT_CDB, WITHOUT_DNSDB, WITHOUT_DSEARCH, WILD_LSEARCH,
# WITHOUT_NIS and WITHOUT_PASSWD to disable support for CDB-style, DNS-style,
# directory-list, wildcarded-file, NIS and /etc/passwd lookups respectively.
#WITHOUT_CDB= yes
#WITHOUT_DNSDB= yes
#WITHOUT_DSEARCH= yes
#WITHOUT_WILDLSEARCH= yes
#WITHOUT_NIS= yes
#WITHOUT_PASSWD= yes
#
# Disable support for the LMTP (RFC 2033 "SMTP over command pipe")
# transport.
@ -345,6 +347,10 @@ SEDLIST+= -e 's,^\# LOOKUP_WILDLSEARCH=,LOOKUP_WILDLSEARCH=,'
SEDLIST+= -e 's,^\# LOOKUP_NIS=,LOOKUP_NIS=,'
.endif
.if !defined(WITHOUT_PASSWD)
SEDLIST+= -e 's,^\# LOOKUP_PASSWD=,LOOKUP_PASSWD=,'
.endif
.if !defined(WITHOUT_LMTP)
SEDLIST+= -e 's,^\# TRANSPORT_LMTP=,TRANSPORT_LMTP=,'
.endif