5fe181752d
the static authentication modules. This allows us to add two new flavors: ldap and mysql, which communicate via the authdaemon. Note that this requires users to rehaul their configuration scripts; the INSTALL script should detect this and print out a message.
71 lines
1.6 KiB
Plaintext
71 lines
1.6 KiB
Plaintext
#!/bin/sh
|
|
#
|
|
# $OpenBSD: INSTALL,v 1.3 2001/03/22 03:10:50 avsm Exp $
|
|
#
|
|
# courier-imap installation to detect old-format config files
|
|
|
|
# exit on errors, use a sane path and install prefix
|
|
#
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
COURIERCONF=${SYSCONFDIR}/courier-imap
|
|
|
|
do_notice()
|
|
{
|
|
echo
|
|
echo "+---------------"
|
|
echo "| As of Courier-IMAP 1.3.0, configuration files have"
|
|
echo "| been moved into ${COURIERCONF}, and have a new"
|
|
echo "| format."
|
|
echo "| "
|
|
echo "| The older format files have been detected on your"
|
|
echo "| installation, so be sure to update these from the"
|
|
echo "| ones in ${PREFIX}/share/examples/courier-imap"
|
|
echo "+---------------"
|
|
echo
|
|
}
|
|
|
|
do_notice2()
|
|
{
|
|
echo
|
|
echo "+---------------"
|
|
echo "| As of Courier-IMAP 1.3.5, we have switched to using the "
|
|
echo "| authdaemon mechanism to handle authentication."
|
|
echo "| "
|
|
echo "| Please check your configuration files and update them "
|
|
echo "| from ${PREFIX}/share/examples/courier-imap"
|
|
echo "+---------------"
|
|
echo
|
|
}
|
|
|
|
# verify proper execution
|
|
#
|
|
if [ $# -ne 2 ]; then
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Verify/process the command
|
|
#
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
: nothing to pre-install for this port
|
|
;;
|
|
POST-INSTALL)
|
|
if [ -f /etc/imapd.cnf -o -f /etc/imapd.config -o -f /etc/imapd-ssl.config ]; then
|
|
do_notice
|
|
fi
|
|
if [ ! -f ${COURIERCONF}/authdaemonrc ]; then
|
|
do_notice2
|
|
fi
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|