File: ip-up.d

package info (click to toggle)
exim4 4.50-8sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,852 kB
  • ctags: 5,278
  • sloc: ansic: 75,531; sh: 4,380; makefile: 476; perl: 65
file content (15 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
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 [ "x${QUEUERUNNER}" != "xno" ] ; then
# Flush exim queue
	/usr/sbin/exim4 -qqf ${QUEUERUNNEROPTIONS} ${COMMONOPTIONS}
fi