diff options
author | lioux <lioux@FreeBSD.org> | 2003-01-26 19:10:35 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2003-01-26 19:10:35 +0000 |
commit | cce3b039b00d8573fdfbf64ae80c97796b302254 (patch) | |
tree | 00a137b2dd0ea7d3b23975a941f974ab8f17e846 /mail/qmail | |
parent | cc20d1055b79d48f696c843ea0a49daa4fdc731d (diff) | |
download | FreeBSD-ports-cce3b039b00d8573fdfbf64ae80c97796b302254.zip FreeBSD-ports-cce3b039b00d8573fdfbf64ae80c97796b302254.tar.gz |
Update to current standards for rc.conf(5) file: disable sendmail
by setting sendmail_enable to NONE instead of NO
Prompted by: too many
Diffstat (limited to 'mail/qmail')
-rw-r--r-- | mail/qmail/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/qmail/Makefile b/mail/qmail/Makefile index 83aad66..eb19302 100644 --- a/mail/qmail/Makefile +++ b/mail/qmail/Makefile @@ -359,10 +359,10 @@ disable-sendmail: thereal-disable-sendmail @${ECHO_MSG} "===> You just told your system to not" @${ECHO_MSG} "===> automaticaly start sendmail on your" @${ECHO_MSG} "===> next startup." - @${ECHO_MSG} "===> (i.e., added sendmail_enable=\"NO\" to rc.conf)" + @${ECHO_MSG} "===> (i.e., added sendmail_enable=\"NONE\" to rc.conf)" @if [ -f ${RC_CONF_FILE} ]; \ then \ - ${ECHO_CMD} sendmail_enable=\"NO\" >> ${RC_CONF_FILE} ; \ + ${ECHO_CMD} sendmail_enable=\"NONE\" >> ${RC_CONF_FILE} ; \ fi enable-sendmail: thereal-disable-sendmail @@ -370,7 +370,7 @@ enable-sendmail: thereal-disable-sendmail @${ECHO_MSG} "===> You just told your system to" @${ECHO_MSG} "===> automaticaly start sendmail on your" @${ECHO_MSG} "===> next startup." - @${ECHO_MSG} "===> (i.e., removed sendmail_enable=\"NO\" from rc.conf)" + @${ECHO_MSG} "===> (i.e., removed sendmail_enable=\"NONE\" from rc.conf)" enable-qmail: install disable-sendmail @if [ -f ${MAILER_CONF_FILE} ]; \ |