aboutsummaryrefslogtreecommitdiff
path: root/src/postgrey/postgrey.rc
blob: dc25887aebf8b0622cb8fde31c40b3e8354ea4ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash

# source application-specific settings
POSTGREY_CONF=/etc/conf.d/postgrey
[ -f $POSTGREY_CONF ] && . $POSTGREY_CONF

. /etc/rc.conf
. /etc/rc.d/functions

GROUP="postgrey"
USER="postgrey"
DAEMON_NAME="postgrey"
POSTGREY_BIN="/usr/sbin/postgrey"
PIDFILE=/var/run/postgrey/postgrey.pid

mkdir -p /var/run/postgrey
chown $USER:$GROUP /var/run/postgrey

PID=`cat $PIDFILE 2>/dev/null`
[ -d /proc/$PID ] || PID=""

checkconfig() {
	if [ -z $POSTGREY_ADDR ]; then
		echo "You need to set POSTGREY_ADDR instead of POSTGREY_TYPE parameter bundle"
		return 1
	fi
}

start() {
	stat_busy "Starting Postgrey"
	checkconfig || { stat_fail; return 1; }

	[ -z "$PID" ] && $POSTGREY_BIN --daemonize $POSTGREY_ADDR \
		--group=$GROUP --user=$USER $POSTGREY_OPTS --pidfile=$PIDFILE \
		--greylist-text="$POSTGREY_TEXT" > /dev/null

	if [ $? -gt 0 ]
       	then
		stat_fail
	else
		add_daemon postgrey
		stat_done
	fi
}

stop() {
	stat_busy "Stopping Postgrey"
	[ ! -z "$PID" ]  && kill -9 $PID &> /dev/null
	if [ $? -gt 0 ]
	then
		stat_fail
	else
		rm_daemon postgrey
		rm -f $PIDFILE
		stat_done
	fi
}

case "$1" in
	start)
		start
	;;
	stop)
		stop
	;;
	restart)
		# calling 'stop' and 'start' without the $0 fails...
		$0 stop
		$0 start
	;;
	*)
		echo "usage: $0 {start|stop|restart}"
	esac
exit 0