blob: d723ff55166099eeb7e310f399b5c78966407009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
if [ -n "$EX4DEBUG" ]; then
echo "now debugging $0 $@"
set -x
fi
[ -x /usr/lib/exim4/exim4 ] || exit 0
[ -f /etc/default/exim4 ] && . /etc/default/exim4
if [ "${QUEUERUNNER}" != "no" ] ; then
# Flush exim queue
/usr/sbin/exim4 -qqf ${QUEUERUNNEROPTIONS} ${COMMONOPTIONS}
fi
|