mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
851945b1eb
Feature safe: yes
25 lines
496 B
Makefile
25 lines
496 B
Makefile
# $FreeBSD$
|
|
|
|
CATEGORIES= mail ipv6
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
|
|
SENDMAIL_WITH_TLS= yes
|
|
.if defined(SENDMAIL_WITH_SUID)
|
|
# only for compatibility with sendmail 8.11.x
|
|
SENDMAIL_WITH_SASL= yes
|
|
SENDMAIL_WITH_SFIO= yes
|
|
SENDMAIL_WITH_MILTER= yes
|
|
SENDMAIL_PORT?= sendmail811
|
|
.else
|
|
SENDMAIL_WITH_SASL2= yes
|
|
SENDMAIL_PORT?= sendmail
|
|
.endif
|
|
MASTERDIR?= ${.CURDIR}/../${SENDMAIL_PORT}
|
|
|
|
.if exists(${.CURDIR}/Makefile.local)
|
|
.include "${.CURDIR}/Makefile.local"
|
|
.endif
|
|
|
|
.include "${MASTERDIR}/Makefile"
|