1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5.if ${MK_MAILWRAPPER} != "no" 6PROG= mailwrapper 7MAN= mailwrapper.8 8 9LIBADD= util 10.endif 11 12.if ${MK_MAILWRAPPER} != "no" || ${MK_SENDMAIL} != "no" || ${MK_DMAGENT} != "no" 13SYMLINKS= ../sbin/mailwrapper /usr/bin/mailq \ 14 ../sbin/mailwrapper /usr/bin/newaliases \ 15 mailwrapper /usr/sbin/hoststat \ 16 mailwrapper /usr/sbin/purgestat \ 17 mailwrapper /usr/sbin/sendmail 18 19.if ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} != "no" 20SYMLINKS+= ../libexec/sendmail/sendmail ${BINDIR}/mailwrapper 21.elif ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} == "no" && ${MK_DMAGENT} != "no" 22SYMLINKS+= ../libexec/dma ${BINDIR}/mailwrapper 23.endif 24.endif 25 26.if ${MK_MAILWRAPPER} != "no" && ${MK_SENDMAIL} == "no" 27SYMLINKS+= ..${BINDIR}/mailwrapper /bin/rmail 28.endif 29 30.if ${MK_MAILWRAPPER} != "no" 31# We install here if either sendmail(8) is enabled, or dma(8) isn't. In the 32# latter scenario, we take care of the possibility that neither sendmail(8) nor 33# dma(8) are installed and simply provide a default that can be changed for an 34# alternative in ports. 35.if ${MK_SENDMAIL} != "no" || ${MK_DMAGENT} == "no" 36CONFS= ${SRCTOP}/etc/mail/mailer.conf 37CONFSDIR= /etc/mail 38CONFSMODE= 644 39.endif 40.endif 41 42.include <bsd.prog.mk> 43