pkgsrc/mail/sqwebmail/DEINSTALL
jlam 72466a2274 Update mail/sqwebmail to version 5.0.0. Changes from version 4.0.5
include:

* log login failures.

* Replace 'nodsn' control file with 'wbnodsn' account option.  Replace
  'nochangepass' control file with 'wbnochangepass' account option.
  Replace 'nochangingfrom' control file with 'wbnochangingfrom' account
  option.  Replace usexsender with 'wbusexsender' and noimages with
  'wbnoimages'.

* Fix off-by 1 in GPG key export.
2005-02-18 22:12:56 +00:00

29 lines
742 B
Text

# $NetBSD: DEINSTALL,v 1.4 2005/02/18 22:12:56 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}/authcharset \
${PKG_SYSCONFDIR}/autoresponsesquota \
${PKG_SYSCONFDIR}/defaultdomain \
${PKG_SYSCONFDIR}/logindomainlist \
${PKG_SYSCONFDIR}/maildirfilterconfig
do
${ECHO} "# FILE: $file . /dev/null" >> ./+FILES
done
fi
sockfile="@SQWEBMAIL_STATEDIR@/sqwebmail.sock"
if ${TEST} -f "$sockfile"; then
# Unconditionally remove the SqWebMail socket.
${ECHO} "Removing sqwebmail socket file:"
${ECHO} " $sockfile"
${RM} -f $sockfile
fi
;;
esac