freebsd-ports/security/cyrus-sasl2-saslauthd/pkg-install
Hajimu UMEMOTO f0922b5aa5 Stop installing Sendmail.conf by cyrus-sasl2, and it is now installed
by cyrus-sasl2-saslauthd.  Since if Sendmail.conf is not installed,
SASL2 uses auxprop by default, it is enough to install Sendmail.conf
by saslauthd port.
2003-07-20 06:29:25 +00:00

23 lines
381 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
PKG_BATCH=${BATCH:=NO}
PKG_PREFIX=${PKG_PREFIX:=/usr/local}
# This should really be installed by Sendmail
sendmail_conf() {
if [ ! -f ${PKG_PREFIX}/lib/sasl2/Sendmail.conf ]; then
echo "pwcheck_method: saslauthd" > ${PKG_PREFIX}/lib/sasl2/Sendmail.conf
fi
}
case $2 in
POST-INSTALL)
if [ "${PKG_BATCH}" = "NO" ]; then
sendmail_conf
fi
;;
esac