#!/bin/sh
if grep -q "#-- smtp-refuser begin" /etc/hosts.allow; then
	cp /etc/hosts.allow /tmp/$$
	sed -e '/#-- smtp-refuser begin/,/#-- smtp-refuser end/d' </tmp/$$ >/etc/hosts.allow
	rm /tmp/$$;
fi
#DEBHELPER#
