diff options
author | lioux <lioux@FreeBSD.org> | 2000-11-01 08:24:14 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2000-11-01 08:24:14 +0800 |
commit | a6388a7b14245091929fe050d0999de34edb09c2 (patch) | |
tree | b0f1e5bd176f637e556433aece6a6bfb039809b6 /mail/qmail | |
parent | f3e886a9e114316b22f0d1268bed3d7d86b17981 (diff) | |
download | freebsd-ports-gnome-a6388a7b14245091929fe050d0999de34edb09c2.tar.gz freebsd-ports-gnome-a6388a7b14245091929fe050d0999de34edb09c2.tar.zst freebsd-ports-gnome-a6388a7b14245091929fe050d0999de34edb09c2.zip |
I added a warning for pre-mailwrapper users about the "danger" of
making world; thus, "destroying" their qmail installation. A target
should be added later to "fix" this automatically.
PR: ports/22269
Submitted by: Gavin Cameron <gavin@itworks.com.au>
Discussed by: Chris Faulhaber <jedgar@fxp.org>
Discussed by: Neil Blakey-Milner <nbm@mithrandr.moria.org>
Diffstat (limited to 'mail/qmail')
-rw-r--r-- | mail/qmail/Makefile | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/mail/qmail/Makefile b/mail/qmail/Makefile index cda468cb6aa8..e78cc038ba92 100644 --- a/mail/qmail/Makefile +++ b/mail/qmail/Makefile @@ -213,11 +213,22 @@ enable-qmail: install disable-sendmail ${ECHO_MSG} "===> or, do \¨make force_enable_qmail\¨ if you are sure" ; \ ${ECHO_MSG} "===> you want this port replacing some binaries" ; \ ${ECHO_MSG} "===> IF THIS FEELS UNEASY, read ${PREFIX}/${DOCDIR}/REMOVE.sendmail and do it manually" ; \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "=======> VERY IMPORTANT <=======" ; \ + ${ECHO_MSG} "===> One side issue is that if you do replace them," ; \ + ${ECHO_MSG} "===> you really should consider ADDING \"NO_SENDMAIL=true\"" ; \ + ${ECHO_MSG} "===> to your /etc/make.conf if you do \"make world\"." ; \ + ${ECHO_MSG} "===> Otherwise, \"make world\" will \"fix\" your sendmail" ; \ + ${ECHO_MSG} "===> installation breaking your qmail one." ; \ + ${ECHO_MSG} "===> Read the FreeBSD Handbook section on \"make world\"" ; \ + ${ECHO_MSG} "===> if you do not know what I am talking about." ; \ + ${ECHO_MSG} "===> Check http://www.freebsd.org/ for the most" ; \ + ${ECHO_MSG} "===> updated copy of the Handbook." ; \ fi - @${ECHO} "===> Do not forget to choose an appropriate qmail startup" - @${ECHO} "===> script. Go through ${PREFIX}/boot, choose one" - @${ECHO} "===> and copy the chosen script as ${PREFIX}/rc" - @${ECHO} "===> For example, \¨cp ${PREFIX}/boot/proc+df ${PREFIX}/rc\¨" + @${ECHO_MSG} "===> Do not forget to choose an appropriate qmail startup" + @${ECHO_MSG} "===> script. Go through ${PREFIX}/boot, choose one" + @${ECHO_MSG} "===> and copy the chosen script as ${PREFIX}/rc" + @${ECHO_MSG} "===> For example, \¨cp ${PREFIX}/boot/proc+df ${PREFIX}/rc\¨" # taken from mail/postfix idea force-enable-qmail: install disable-sendmail |