#!/bin/bash
# install as /usr/share/bug/$package/script or /usr/share/bug/$package

UE4CC="/etc/exim4/update-exim4.conf.conf"

if test -x /usr/sbin/exim4 ; then
	/usr/sbin/exim4 -bV >&3
fi
yesno "Include extended configuration information?" "yep"
if [ "$REPLY" != "yep" ] ;then
        exit 0
fi
if test -r $UE4CC ; then
	cat $UE4CC >&3
fi
if test -r /etc/mailname ; then
	echo -n 'mailname:' >&3
	cat /etc/mailname >&3
fi
