1999-12-29 12:51:22 -05:00
|
|
|
# $FreeBSD$
|
1999-12-19 08:50:37 -05:00
|
|
|
|
2014-05-06 00:22:01 -04:00
|
|
|
.include <src.opts.mk>
|
2006-03-17 13:54:44 -05:00
|
|
|
|
|
|
|
|
.if ${MK_MAILWRAPPER} != "no"
|
1999-12-19 08:50:37 -05:00
|
|
|
PROG= mailwrapper
|
2001-03-26 09:42:20 -05:00
|
|
|
MAN= mailwrapper.8
|
2018-01-02 11:50:57 -05:00
|
|
|
|
|
|
|
|
LIBADD= util
|
2002-07-24 18:17:22 -04:00
|
|
|
.endif
|
1999-12-19 08:50:37 -05:00
|
|
|
|
2006-03-17 13:54:44 -05:00
|
|
|
.if ${MK_MAILWRAPPER} != "no" || ${MK_SENDMAIL} != "no"
|
2017-03-07 00:10:38 -05:00
|
|
|
SYMLINKS= ../sbin/mailwrapper /usr/bin/mailq \
|
|
|
|
|
../sbin/mailwrapper /usr/bin/newaliases \
|
|
|
|
|
mailwrapper /usr/sbin/hoststat \
|
|
|
|
|
mailwrapper /usr/sbin/purgestat \
|
|
|
|
|
mailwrapper /usr/sbin/sendmail
|
1999-12-19 08:50:37 -05:00
|
|
|
|
2006-03-17 13:54:44 -05:00
|
|
|
.if ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} != "no"
|
2017-03-07 00:10:38 -05:00
|
|
|
SYMLINKS+= ../libexec/sendmail/sendmail ${BINDIR}/mailwrapper
|
2002-07-24 18:17:22 -04:00
|
|
|
.endif
|
2004-01-17 18:58:23 -05:00
|
|
|
.endif
|
2002-07-24 18:17:22 -04:00
|
|
|
|
2010-10-12 17:01:26 -04:00
|
|
|
.if ${MK_MAILWRAPPER} != "no" && ${MK_SENDMAIL} == "no"
|
2017-03-07 00:10:38 -05:00
|
|
|
SYMLINKS+= ..${BINDIR}/mailwrapper /bin/rmail
|
2010-10-12 17:01:26 -04:00
|
|
|
.endif
|
|
|
|
|
|
2006-03-17 13:54:44 -05:00
|
|
|
.if ${MK_MAILWRAPPER} != "no"
|
pkgbase: resolve mailer.conf conflict WITHOUT_SENDMAIL
When WITHOUT_SENDMAIL is set, we end up with two different mailer.conf that
conflict, and hilarity ensues. There's currently three different places that
we might install mailer.conf:
- ^/etc/Makefile (package=runtime, contingent on MK_MAIL != no)
- ^/libexec/dma/dmagent/Makefile (package=dma, contingent on MK_SENDMAIL !=
no)
- ^/usr.sbin/mailwrapper/Makefile (package=utilities, contingent on
not-installed)
The mailwrapper installation will effectively never happen because the ^/etc
one will first.
This patch simplifies the whole situation; remove the ^/etc/Makefile version
and install it primarily in mailwrapper if MK_MAILWRAPPER != "no". The
scenarios covered in mailwrapper are:
- sendmail(8) is installed, dma(8) may or may not be installed
- neither sendmail(8) nor dma(8) is installed
In the first scenario, sendmail(8) is dominant so we can go ahead and
install the version in ^/etc/mail. In the unlisted scenario, sendmail(8) is
not installed but dma(8) is, we'll let ^/libexec/dma/dmagent do the
installation. In the second listed scenario, we still want to install an
example mailer.conf so just install the base sendmail(8) version.
Reviewed by: bapt
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D24924
2020-06-01 22:38:54 -04:00
|
|
|
# We install here if either sendmail(8) is enabled, or dma(8) isn't. In the
|
|
|
|
|
# latter scenario, we take care of the possibility that neither sendmail(8) nor
|
|
|
|
|
# dma(8) are installed and simply provide a default that can be changed for an
|
|
|
|
|
# alternative in ports.
|
|
|
|
|
.if ${MK_SENDMAIL} != "no" || ${MK_DMAGENT} == "no"
|
2020-06-29 14:06:00 -04:00
|
|
|
CONFS= ${SRCTOP}/etc/mail/mailer.conf
|
|
|
|
|
CONFSDIR= /etc/mail
|
|
|
|
|
CONFSMODE= 644
|
2000-06-03 21:20:58 -04:00
|
|
|
.endif
|
2002-07-24 18:17:22 -04:00
|
|
|
.endif
|
1999-12-29 13:27:35 -05:00
|
|
|
|
1999-12-19 08:50:37 -05:00
|
|
|
.include <bsd.prog.mk>
|