6c0b00b275
include minor bugfixes, and fixing a major typo where the maildiracl and maildirkw utilities were actually just copies of the maildirmake utility.
19 lines
441 B
Text
19 lines
441 B
Text
# $NetBSD: DEINSTALL,v 1.2 2005/02/18 22:12:50 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}/autoresponsesquota \
|
|
${PKG_SYSCONFDIR}/maildirfilterconfig \
|
|
${PKG_SYSCONFDIR}/maildirshared
|
|
do
|
|
${ECHO} "# FILE: $file . /dev/null" >> ./+FILES
|
|
done
|
|
fi
|
|
;;
|
|
esac
|