pkgsrc/mail/courier-auth/INSTALL
jlam 02c1ff5849 Update mail/courier-auth to 0.45.6. Changes from version 0.44.2 include:
* Honor ${VARBASE}.
  * Rename "authdaemon.sysconftool" to "sysconftool" for use by other
    Courier mail packages.
  * authvchkpw explicitly disabled -- it's not officially supported within
    courier, and there's a workaround by using vchkpw2userdb(8).  This
    closes pkg/19365.
  * courierlogger(1) moved from mail/courier-imap into this package.
  * Support a new setting DEBUG_LOGIN in authdaemonrc to allow easier
    debugging of the authentication process.
  * Added documentation on how to debug the authentication process in
    ${PREFIX}/share/doc/courier.
  * makedat: Skip subdirectories named "CVS".  Allows all directory-based
    lists (makesmtpaccess, etc...) to be managed via CVS.
2004-07-14 20:07:07 +00:00

19 lines
473 B
Text

# $NetBSD: INSTALL,v 1.2 2004/07/14 20:07:07 jlam Exp $
SYSCONFTOOL="@SYSCONFTOOL@"
EGDIR=${PKG_PREFIX}/share/examples/courier
GEN_FILES="@GEN_FILES@"
case ${STAGE} in
POST-INSTALL)
eval set -- ${GEN_FILES}
for file
do
# Merge new config files with the old ones.
${CP} ${EGDIR}/${file}.dist ${PKG_SYSCONFDIR}/${file}.dist
${SYSCONFTOOL} ${PKG_SYSCONFDIR}/${file}
${CHMOD} 0600 ${PKG_SYSCONFDIR}/${file}
${RM} -f ${PKG_SYSCONFDIR}/${file}.dist
done
;;
esac