#! /bin/sh
# postrm script for cyrus-common
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
# for details, see /usr/doc/packaging-manual/

case "$1" in
		remove)
			if [ -e /etc/suid.conf -a -x /usr/sbin/suidunregister ]; then
#				suidunregister -s cyrus-common /usr/sbin/pwcheck_standard
				suidunregister -s cyrus-common /usr/sbin/cyrdeliver
			fi

			# Remove the alternatives
#			update-alternatives --remove pwcheck /usr/sbin/pwcheck_standard
#			update-alternatives --remove pwcheck /usr/sbin/pwcheck_pam

			;;
		purge)

#			rm -rf /var/state/pwcheck

			echo -n "Do you want me to remove the Cyrus mail and news spool (y/n) [n] ?"
			read ans

			if [ "$ans" = "y" -o "$ans" = "Y" ]; then
				rm -rf /var/spool/cyrus /var/lib/cyrus
			fi

        	;;

		upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

			;;

		*)
			echo "postrm called with unknown argument \`$1'" >&2
			exit 0

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#


