77eebb3972
3.0.5 include: * Implemented IMAP and POP3 proxy aggregator. With a proxy aggregator, the mail accounts are split between multiple, independent servers, with an IMAP/POP3 server running on each individual server. A separate, proxy server sits in front and accepts ordinary IMAP and POP3 connections. It reads the login ID, determines which server the account is located on, connects to the server, and logs in. Then, for the lifetime on the login session the front-end server takes itself out of the loop, and forwards all session traffic between the IMAP/POP3 client, and the back-end server. * Use courier-authlib for user authentication. * IPv6 support. * Minor bug fixes. Please note when updating that the locations of the userdb files has changed to be within the courier-authlib config directory, e.g. /usr/pkg/etc/authlib/userdb*.
30 lines
704 B
Text
30 lines
704 B
Text
# $NetBSD: DEINSTALL,v 1.6 2005/02/18 22:12:46 jlam Exp $
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
#
|
|
# Note some additional files that may be created by the sysadmin
|
|
# that can probably be removed.
|
|
#
|
|
if ${TEST} -x ./+FILES; then
|
|
for file in \
|
|
${PKG_SYSCONFDIR}/imapd.rand \
|
|
${PKG_SYSCONFDIR}/pop3d.rand \
|
|
@SSLCERTS@/imapd.pem \
|
|
@SSLCERTS@/pop3d.pem
|
|
do
|
|
${ECHO} "# FILE: $file . /dev/null" >> ./+FILES
|
|
done
|
|
fi
|
|
;;
|
|
|
|
POST-DEINSTALL)
|
|
couriersslcache="@VARBASE@/couriersslcache"
|
|
if ${TEST} -f "$couriersslcache"; then
|
|
# Unconditionally remove the SSL cache file.
|
|
${ECHO} "Removing Courier SSL cache file:"
|
|
${ECHO} " $couriersslcache"
|
|
${RM} -f $couriersslcache
|
|
fi
|
|
;;
|
|
esac
|