44cfab94b5
include: * Better error-handling. * Support for Courier-IMAP authdaemond for plaintext password verification. * Fixed resource leaks and buffer overruns. pkgsrc changes include: * SASL_DBTYPE is either "ndbm" or "berkeley" and sets the db format of the sasldb authentication database, defaulting to ndbm. * SASLSOCKETDIR is the location of the saslauthd socket directory. * AUTHDAEMONVAR is the localt of the authdaemond socket directory. * SASL_ENTROPY_SOURCE is a file of random bytes used as a PRNG. This closes PR 24649 and PR 24694.
19 lines
415 B
Bash
19 lines
415 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.4 2004/03/29 05:47:31 jlam Exp $
|
|
|
|
SASLDB=@PKG_SYSCONFDIR@/sasldb.db
|
|
|
|
case ${STAGE} in
|
|
POST-DEINSTALL)
|
|
if [ -f ${SASLDB} ]; then
|
|
${CAT} << EOF
|
|
===========================================================================
|
|
You may want to remove the SASL password data file:
|
|
|
|
${SASLDB}
|
|
===========================================================================
|
|
EOF
|
|
fi
|
|
;;
|
|
esac
|