#!/bin/sh

[ -n "$EX4DEBUG" ] && set -x

[ -x /usr/lib/exim4/exim4 ] || exit 0

[ -f /etc/default/exim4 ] && . /etc/default/exim4

if [ "x${QUEUERUNNER}" != "xno" ] ; then
# Flush exim queue
	/usr/sbin/exim4 -qqf ${QUEUERUNNEROPTIONS} ${COMMONOPTIONS}
fi
