]> git.donarmstrong.com Git - deb_pkgs/spamass-milter.git/blob - debian/spamass-milter.init
support the old location of spamass.sock and allow to migrate to the new location
[deb_pkgs/spamass-milter.git] / debian / spamass-milter.init
1 #!/bin/sh
2 #
3 # $Id$
4 #
5 # Sample init script for Debian GNU/Linux
6 #
7 #  Copyright (c) 2002 Georg C. F. Greve <greve@gnu.org>,
8 #   all rights maintained by FSF Europe e.V., 
9 #   Villa Vogelsang, Antonienallee 1, 45279 Essen, Germany
10 #
11 #   This program is free software; you can redistribute it and/or modify
12 #   it under the terms of the GNU General Public License as published by
13 #   the Free Software Foundation; either version 2 of the License, or
14 #   (at your option) any later version.
15 #  
16 #   This program is distributed in the hope that it will be useful,
17 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
18 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 #   GNU General Public License for more details.
20 #  
21 #   You should have received a copy of the GNU General Public License
22 #   along with this program; if not, write to the Free Software
23 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 #
25 #   Contact:
26 #            Michael Brown <michaelb@opentext.com>
27
28 # This init script was modified on Thu, 30 Jan 2003 02:06:04 -0500 by
29 # Don Armstrong <don@donarmstrong.com> from contrib/spamass-milter to
30 # allow force-reload and options specified in
31 # /etc/default/spamass-milter necessary for inclusion in debian.
32
33
34 PATH=/sbin:/bin:/usr/sbin:/usr/bin
35 DAEMON=/usr/sbin/spamass-milter
36 SOCKET=/var/run/spamass/spamass.sock
37 PIDFILE=/var/run/spamass/spamass.pid
38 DESC="Sendmail milter plugin for SpamAssassin"
39
40 DEFAULT=/etc/default/spamass-milter
41 OPTIONS=""
42 RUNAS="nobody"
43 CHUID=""
44 SOCKETMODE="0640"
45 SOCKETOWNER="root:root"
46
47 test -x $DAEMON || exit 0
48
49 if [ -e /etc/mail/sendmail.cf ] && egrep -q 'X.+S=local:/var/run/sendmail/spamass\.sock' /etc/mail/sendmail.cf; then
50     SOCKET=/var/run/sendmail/spamass.sock
51     SOCKETMODE=""
52     SOCKETOWNER=""
53     RUNAS=""
54     echo "WARNING: You are using the old location of spamass.sock. Change your input filter to use";
55     echo "/var/run/spamass/spamass.sock so spamass-milter can run as nobody";
56 fi;
57
58 # If /usr/sbin/postfix exists, set up the defaults for a postfix install
59 # These can be overridden in /etc/default/spamass-milter
60 if [ -x /usr/sbin/postfix ]; then
61     SOCKET="/var/spool/postfix/spamass/spamass.sock"
62     PIDFILE="/var/spool/postfix/spamass/spamass.pid"
63     SOCKETOWNER="postfix:postfix"
64     SOCKETMODE="0660"
65 fi;
66
67 if [ -r $DEFAULT ]; then
68     . $DEFAULT;
69 fi;
70
71 if [ -n "$RUNAS" ]; then
72     CHUID="--chuid $RUNAS";
73 fi;
74
75 set -e
76
77 start() {
78     if [ ! -d $(dirname $SOCKET) ]; then
79         mkdir -p $(dirname $SOCKET);
80         if [ -n "$SOCKETOWNER" ]; then
81             chown "$SOCKETOWNER" $(dirname $SOCKET);
82         fi;
83     fi;
84     if [ ! -d $(dirname $PIDFILE) ]; then
85         mkdir -p $(dirname $PIDFILE);
86         if [ -n "$RUNAS" ]; then
87             chown "$RUNAS" $(dirname $PIDFILE);
88         fi;
89     fi;
90     /bin/rm -f $SOCKET
91     start-stop-daemon --start -p $PIDFILE $CHUID --exec $DAEMON -- -P $PIDFILE -f -p $SOCKET $OPTIONS
92     sleep 1s
93     if [ -n "$SOCKETMODE" ]; then
94         chmod $SOCKETMODE $SOCKET;
95     fi;
96     if [ -n "$SOCKETOWNER" ]; then
97         chown $SOCKETOWNER $SOCKET;
98     fi;
99 }
100
101 stop(){
102     start-stop-daemon --stop -p $PIDFILE --signal 3 --exec $DAEMON
103     /bin/sleep 5s
104     /bin/rm -f $SOCKET
105 }
106
107 case "$1" in
108   start)
109         echo -n "Starting $DESC: "
110         start
111         echo "${DAEMON}"
112         ;;
113   stop)
114         echo -n "Stopping $DESC: "
115         stop
116         echo "${DAEMON}"
117         ;;
118   force-reload | restart)
119         echo -n "Restarting $DESC: "
120
121         stop
122         start
123         echo "${DAEMON}"
124
125         ;;
126   *)
127         N=$0
128         echo "Usage: $N {start|stop|restart}" >&2
129         exit 1
130         ;;
131 esac
132
133 exit 0