Changes since version 2.1.2: - DNSRBL support in ACL - Per-ACL greylisting and autowhitelisting delays - ACL blacklist feature - Add support to use Sendmail macros in the ACL - Allow rejecting by tempfail on blacklist configuration - per-ACL SMTP error code and messages - Multi-line statement in the config file - Report matching ACL line number in the logs - Lists for from, rcpt, domain, netblocks and DNSRBL - Make log output consistent (Fredrik Pettai) - Tell local connexions are non IP instead of non IPv4 (Attila Bruncsak) - Faster ACL code - Option to log expired entries (Jeff Rife) - Cosmetic changes in debug logs (Fredrik Pettai) - A lot of bug and build fixes This fixes PR pkg/34793 by Eric Schnoebelen.
36 lines
746 B
Makefile
36 lines
746 B
Makefile
# $NetBSD: options.mk,v 1.1 2006/10/12 13:14:43 tron Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.milter-greylist
|
|
PKG_SUPPORTED_OPTIONS= dnsrbl drac spf
|
|
PKG_SUGGESTED_OPTIONS= dnsrbl spf
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### RNS Realtime Black List
|
|
###
|
|
.if empty(PKG_OPTIONS:Mdnsrbl)
|
|
CONFIGURE_ARGS+= --disable-dnsrbl
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-dnsrbl
|
|
.endif
|
|
|
|
###
|
|
### Dynamic Relay Authorization Control
|
|
###
|
|
.if empty(PKG_OPTIONS:Mdrac)
|
|
CONFIGURE_ARGS+= --disable-drac
|
|
.else
|
|
DRACD_DB?= /etc/mail/dracd.db
|
|
|
|
CONFIGURE_ARGS+= --enable-drac --with-drac-db=${DRACD_DB}
|
|
.endif
|
|
|
|
###
|
|
### Sender Policy Framework
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mspf)
|
|
.include "../../mail/libspf-alt/buildlink3.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-libspf_alt=${PREFIX:Q}
|
|
.endif
|