diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-01-26 19:10:35 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-01-26 19:10:35 +0000 |
commit | b0eefe12d22cf3d4ef89b36bc3b7045fb5554dbd (patch) | |
tree | 7211916b51f1763fb539b05c9f347c05dcdc4e7d /mail | |
parent | Style fix: replace the 8 for the 7 bits quote character (diff) |
Update to current standards for rc.conf(5) file: disable sendmail
by setting sendmail_enable to NONE instead of NO
Prompted by: too many
Notes
Notes:
svn path=/head/; revision=74045
Diffstat (limited to 'mail')
-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 83aad66bd64c..eb1930224a5e 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} ]; \ |