#!/bin/sh

set -e

case "$1" in
	remove|deconfigure)
		update-alternatives --remove mutt /usr/bin/mutt-org
		;;
esac



exit 0
