blob: d763884bfa7c249f632e967b35785d5363ee5b52 (
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
|
#!/bin/bash
PORT=10025
PIDFILE=/var/run/postgrey/postgrey.pid
USER=%POSTGREYUSR%
GROUP=%POSTGREYGRP%
HOST=mail.example.com
postgrey_start() {
echo "Starting postgrey milter: /usr/bin/postgrey -d --inet=$PORT --pidfile=$PIDFILE --user=$USER --group=$GROUP --dbdir=/var/lib/postgrey --hostname=$HOST"
mkdir -p /var/run/postgrey
/usr/bin/postgrey -d \
--inet=$PORT \
--pidfile=/var/run/postgrey/postgrey.pid \
--user=$USER --group=$GROUP \
--dbdir=/var/lib/postgrey \
--hostname=$HOST
}
postgrey_stop() {
if [ -e $PIDFILE ]; then
echo "Stopping postgrey milter..."
kill $(cat $PIDFILE) 1>/dev/null
fi
}
case "$1" in
'start')
postgrey_start
;;
'stop')
postgrey_stop
;;
'restart')
postgrey_stop
sleep 2
postgrey_start
;;
*)
echo "usage $0 start|stop|restart"
;;
esac
|