diff --git a/libexec/dma/dmagent/Makefile b/libexec/dma/dmagent/Makefile --- a/libexec/dma/dmagent/Makefile +++ b/libexec/dma/dmagent/Makefile @@ -24,11 +24,6 @@ CLEANFILES= aliases_parse.i FILES= mailer.conf FILESDIR= ${SHAREDIR}/examples/dma -.if ${MK_SENDMAIL} == no -CONFGROUPS= CONFS MAILER -MAILERDIR= /etc/mail -MAILER= mailer.conf -.endif BINMODE= 2555 diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf --- a/libexec/rc/rc.conf +++ b/libexec/rc/rc.conf @@ -594,7 +594,7 @@ mta_start_script="/etc/rc.sendmail" # Script to start your chosen MTA, called by /etc/rc. # Settings for /etc/rc.sendmail and /etc/rc.d/sendmail: -sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO). +sendmail_enable="NONE" # Run the sendmail inbound daemon (YES/NO). sendmail_pidfile="/var/run/sendmail.pid" # sendmail pid file sendmail_procname="/usr/sbin/sendmail" # sendmail process name sendmail_flags="-L sm-mta -bd -q30m" # Flags to sendmail (as a server) diff --git a/usr.sbin/mailwrapper/Makefile b/usr.sbin/mailwrapper/Makefile --- a/usr.sbin/mailwrapper/Makefile +++ b/usr.sbin/mailwrapper/Makefile @@ -9,7 +9,7 @@ LIBADD= util .endif -.if ${MK_MAILWRAPPER} != "no" || ${MK_SENDMAIL} != "no" +.if ${MK_MAILWRAPPER} != "no" || ${MK_SENDMAIL} != "no" || ${MK_DMAGENT} != "no" SYMLINKS= ../sbin/mailwrapper /usr/bin/mailq \ ../sbin/mailwrapper /usr/bin/newaliases \ mailwrapper /usr/sbin/hoststat \ @@ -18,6 +18,8 @@ .if ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} != "no" SYMLINKS+= ../libexec/sendmail/sendmail ${BINDIR}/mailwrapper +.elif ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} == "no" && ${MK_DMAGENT} != "no" +SYMLINKS+= ../libexec/dma ${BINDIR}/mailwrapper .endif .endif @@ -25,16 +27,23 @@ SYMLINKS+= ..${BINDIR}/mailwrapper /bin/rmail .endif +.if ${MK_SENDMAIL} != "no" +FILES= ${SRCTOP}/etc/mail/mailer.conf +FILESDIR= ${SHAREDIR}/examples/sendmail +.endif + .if ${MK_MAILWRAPPER} != "no" -# We install here if either sendmail(8) is enabled, or dma(8) isn't. In the +# We install here if either dma(8) is enabled, or sendmail(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" +.if ${MK_DMAGENT} != "no" || ${MK_SENDMAIL} == "no" +CONFS= ${SRCTOP}/libexec/dma/dmagent/mailer.conf +.else CONFS= ${SRCTOP}/etc/mail/mailer.conf +.endif CONFSDIR= /etc/mail CONFSMODE= 644 .endif -.endif .include diff --git a/usr.sbin/mailwrapper/pathnames.h b/usr.sbin/mailwrapper/pathnames.h --- a/usr.sbin/mailwrapper/pathnames.h +++ b/usr.sbin/mailwrapper/pathnames.h @@ -34,4 +34,4 @@ */ #define _PATH_MAILERCONF "/etc/mail/mailer.conf" -#define _PATH_DEFAULTMTA "/usr/libexec/sendmail/sendmail" +#define _PATH_DEFAULTMTA "/usr/libexec/dma"