mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
- add OPTION DKIM
Submitted by: alastair - add OPTION MSP
This commit is contained in:
parent
8a1ab5c7cd
commit
6f296b8ce6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=316987
@ -45,11 +45,13 @@ EXTRA_SBIN= libcheck/noroot libconf/tree libmta/statit \
|
||||
META1CONFDIR?= ${PREFIX}/etc/meta1
|
||||
NOLOGIN_CMD?= /usr/sbin/nologin
|
||||
|
||||
OPTIONS_DEFINE= BDB PMILTER SASL2 SASL2AUTHD TLS
|
||||
OPTIONS_DEFAULT= BDB PMILTER SASL2 TLS
|
||||
OPTIONS_DEFINE= BDB PMILTER DKIM MSP SASL2 SASL2AUTHD TLS
|
||||
OPTIONS_DEFAULT= BDB PMILTER DKIM SASL2 TLS
|
||||
|
||||
BDB_DESC= External Berkeley DB support
|
||||
PMILTER_DESC= Adds policy milter support
|
||||
DKIM_DESC= Enable DKIM signing support
|
||||
MSP_DESC= Enable mail submision program
|
||||
SASL2_DESC= Adds SASL2 support
|
||||
SASL2AUTHD_DESC= Enable plaintext authentication via SASL2
|
||||
|
||||
@ -76,6 +78,22 @@ PMILTER_SUFFIX?= -nopmilter
|
||||
CONFIGURE_ARGS+= --disable-pmilter
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MDKIM}
|
||||
CONFIGURE_ARGS+= --enable-DKIM
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-DKIM
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MMSP}
|
||||
CONFIGURE_ARGS+= --enable-msp
|
||||
MAN8+= sendmail.8
|
||||
PLIST_SUB+= WITH_MSP=""
|
||||
CONFLICTS+= courier-0.* postfix-1.* postfix-2.* smail-3.* zmailer-2.* opensmtpd-* sendmail-*
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-msp
|
||||
PLIST_SUB+= WITH_MSP="@comment "
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MSASL2}
|
||||
LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2
|
||||
CONFIGURE_ARGS+= --enable-SASL
|
||||
|
@ -67,6 +67,7 @@ sbin/greyprint
|
||||
sbin/greyrm
|
||||
sbin/mcp
|
||||
sbin/noroot
|
||||
%%WITH_MSP%%sbin/sendmail
|
||||
sbin/sm.check.sh
|
||||
sbin/sm.setup.sh
|
||||
sbin/statit
|
||||
|
Loading…
Reference in New Issue
Block a user