1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Enable the LMTP transport by default and provide a knob for disabling

it.  There are just too many people who need this for "black box"
POP3/IMAP services to justify the bytes saved in the default package.
This commit is contained in:
Sheldon Hearn 2002-01-28 13:46:25 +00:00
parent e2f9b3f65f
commit 46c9d447c4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53904
3 changed files with 27 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.952
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/Testing/ \
http://www.exim.org/ftp/Testing/ \
@ -75,6 +76,10 @@ LDAP_LIB_TYPE?=OPENLDAP1
#
# Disable support for CDB-style lookups.
#WITHOUT_CDB= yes
#
# Disable support for the LMTP (RFC 2033 "SMTP over command pipe")
# transport.
#WITHOUT_LMTP
# You should not need to fiddle with anything below this point.
@ -186,6 +191,10 @@ SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,'
SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,'
.endif
.if !defined(WITHOUT_LMTP)
SEDLIST+= -e 's,^\# TRANSPORT_LMTP=,TRANSPORT_LMTP=,'
.endif
do-configure:
${MKDIR} ${WRKSRC}/Local
${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile

View File

@ -7,6 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.34
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim3/ \
http://www.exim.org/ftp/exim3/ \
@ -71,6 +72,10 @@ LDAP_LIB_TYPE?=OPENLDAP1
#
# Disable support for CDB-style lookups.
#WITHOUT_CDB= yes
#
# Disable support for the LMTP (RFC 2033 "SMTP over command pipe")
# transport.
#WITHOUT_LMTP
# You should not need to fiddle with anything below this point.
@ -178,6 +183,10 @@ SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,'
SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,'
.endif
.if !defined(WITHOUT_LMTP)
SEDLIST+= -e 's,^\# TRANSPORT_LMTP=,TRANSPORT_LMTP=,'
.endif
do-configure:
${MKDIR} ${WRKSRC}/Local
${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile

View File

@ -7,6 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.34
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim3/ \
http://www.exim.org/ftp/exim3/ \
@ -71,6 +72,10 @@ LDAP_LIB_TYPE?=OPENLDAP1
#
# Disable support for CDB-style lookups.
#WITHOUT_CDB= yes
#
# Disable support for the LMTP (RFC 2033 "SMTP over command pipe")
# transport.
#WITHOUT_LMTP
# You should not need to fiddle with anything below this point.
@ -178,6 +183,10 @@ SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,'
SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,'
.endif
.if !defined(WITHOUT_LMTP)
SEDLIST+= -e 's,^\# TRANSPORT_LMTP=,TRANSPORT_LMTP=,'
.endif
do-configure:
${MKDIR} ${WRKSRC}/Local
${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile