summaryrefslogtreecommitdiffstats
path: root/etc/mail
diff options
context:
space:
mode:
Diffstat (limited to 'etc/mail')
-rw-r--r--etc/mail/Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/etc/mail/Makefile b/etc/mail/Makefile
index 3c9a88c..4ff4549 100644
--- a/etc/mail/Makefile
+++ b/etc/mail/Makefile
@@ -157,10 +157,18 @@ install: ${INSTALL_CF}
start:
(. /etc/defaults/rc.conf; source_rc_confs; \
- if [ "$${sendmail_enable}" = "YES" -a -r /etc/mail/sendmail.cf ];\
- then \
- ${SENDMAIL} $${sendmail_flags}; \
- fi \
+ case "$${sendmail_enable}" in \
+ [Yy][Ee][Ss]) \
+ /usr/sbin/sendmail $${sendmail_flags} \
+ ;; \
+ *) \
+ case "$${sendmail_outbound_enable}" in \
+ [Yy][Ee][Ss]) \
+ /usr/sbin/sendmail $${sendmail_outbound_flags} \
+ ;; \
+ esac \
+ ;; \
+ esac \
)
stop:
OpenPOWER on IntegriCloud