pkgsrc/mail/courier-imap/DEINSTALL
jlam 62c264453a Update mail/courier-imap to 4.1.0. Changes from version 4.0.6 include:
+ Install some more of the HTML documentation in the location expected
    by courier-mta.

  + Moved the default locations for the imapd and pop3d SSL certificates
    into ${PKG_SYSCONFDIR}.  These paths may be changed directly in the
    imapd-ssl and pop3d-ssl configuration files by modifying TLS_CERTFILE.

  * New capability to control announcements of IMAP ACL support when
    starting imapd.

  * Optimization: Skip going through the motions of outputting the results
    of a SORT if the number of sorted messages is 0.

  * Have CREATE and RENAME also create courierimapuidlist.

  * Log total bytes sent/received in IMAP and POP3 sessions.
2006-04-28 18:15:20 +00:00

30 lines
726 B
Text

# $NetBSD: DEINSTALL,v 1.7 2006/04/28 18:15:20 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.pem \
${PKG_SYSCONFDIR}/imapd.rand \
${PKG_SYSCONFDIR}/pop3d.pem \
${PKG_SYSCONFDIR}/pop3d.rand
do
${ECHO} "# FILE: $file . /dev/null" >> ./+FILES
done
fi
;;
POST-DEINSTALL)
couriersslcache="@COURIER_STATEDIR@/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