File postfix-etc-init.d-postfix of Package postfix
x
1
#!/bin/bash
2
#
3
# postfix Postfix Mail Transfer Agent
4
#
5
# chkconfig: - 80 30
6
# description: Postfix is a Mail Transport Agent, which is the program \
7
# that moves mail from one machine to another.
8
# processname: master
9
# pidfile: /var/spool/postfix/pid/master.pid
10
# config: /etc/postfix/main.cf
11
# config: /etc/postfix/master.cf
12
#
13
# Based on startup script from Simon J Mudd <sjmudd@pobox.com>
14
# 25/02/99: Mostly s/sendmail/postfix/g by John A. Martin <jam@jamux.com>
15
# 23/11/00: Changes & suggestions by Ajay Ramaswamy <ajayr@bigfoot.com>
16
# 20/01/01: Changes to fall in line with RedHat 7.0 style
17
# 23/02/01: Fix a few untidy problems with help from Daniel Roesen.
18
19
### BEGIN INIT INFO
20
# Provides: postfix MTA
21
# Required-Start: $local_fs $network $remote_fs
22
# Required-Stop: $local_fs $network $remote_fs
23
# Short-Description: start and stop postfix
24
# Description: Postfix is a Mail Transport Agent, which is the program that
25
# moves mail from one machine to another.
26
### END INIT INFO
27
28
# Source function library.
29
. /etc/rc.d/init.d/functions
30
31
# Source networking configuration.
32
. /etc/sysconfig/network
33
34
RETVAL=0
35
prog="postfix"
36
37
ALIASESDB_STAMP=/var/lib/misc/postfix.aliasesdb-stamp
38
39
# Script to update chroot environment
40
CHROOT_UPDATE=/etc/postfix/chroot-update
41
42
status master >/dev/null 2>&1
43
running=$?
44
45
conf_check() {
46
[ -x /usr/sbin/postfix ] || exit 5
47
[ -d /etc/postfix ] || exit 6
48
[ -d /var/spool/postfix ] || exit 5
49
}
50
51
make_aliasesdb() {
52
if [ "$(/usr/sbin/postconf -h alias_database)" == "hash:/etc/aliases" ]
53
then
54
# /etc/aliases.db may be used by other MTA, make sure nothing
55
# has touched it since our last newaliases call
56
[ /etc/aliases -nt /etc/aliases.db ] ||
57
[ "$ALIASESDB_STAMP" -nt /etc/aliases.db ] ||
58
[ "$ALIASESDB_STAMP" -ot /etc/aliases.db ] || return
59
/usr/bin/newaliases
60
touch -r /etc/aliases.db "$ALIASESDB_STAMP"
61
else
62
/usr/bin/newaliases
63
fi
64
}
65
66
start() {
67
# Check that networking is up.
68
[ ${NETWORKING} = "no" ] && exit 1
69
conf_check
70
# Start daemons.
71
echo -n $"Starting postfix: "
72
make_aliasesdb >/dev/null 2>&1
73
[ -x $CHROOT_UPDATE ] && $CHROOT_UPDATE
74
/usr/sbin/postfix start 2>/dev/null 1>&2 && success || failure $"$prog start"
75
RETVAL=$?
76
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/postfix
77
echo
78
return $RETVAL
79
}
80
81
stop() {
82
conf_check
83
# Stop daemons.
84
echo -n $"Shutting down postfix: "
85
/usr/sbin/postfix stop 2>/dev/null 1>&2 && success || failure $"$prog stop"
86
RETVAL=$?
87
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/postfix
88
echo
89
return $RETVAL
90
}
91
92
reload() {
93
conf_check
94
echo -n $"Reloading postfix: "
95
[ -x $CHROOT_UPDATE ] && $CHROOT_UPDATE
96
/usr/sbin/postfix reload 2>/dev/null 1>&2 && success || failure $"$prog reload"
97
RETVAL=$?
98
echo
99
return $RETVAL
100
}
101
102
abort() {
103
conf_check
104
/usr/sbin/postfix abort 2>/dev/null 1>&2 && success || failure $"$prog abort"
105
return $?
106
}
107
108
flush() {
109
conf_check
110
/usr/sbin/postfix flush 2>/dev/null 1>&2 && success || failure $"$prog flush"
111
return $?
112
}
113
114
check() {
115
conf_check
116
/usr/sbin/postfix check 2>/dev/null 1>&2 && success || failure $"$prog check"
117
return $?
118
}
119
120
# See how we were called.
121
case "$1" in
122
start)
123
[ $running -eq 0 ] && exit 0
124
start
125
;;
126
stop)
127
[ $running -eq 0 ] || exit 0
128
stop
129
;;
130
restart|force-reload)
131
stop
132
start
133
;;
134
reload)
135
[ $running -eq 0 ] || exit 7
136
reload
137
;;
138
abort)
139
abort
140
;;
141
flush)
142
flush
143
;;
144
check)
145
check
146
;;
147
status)
148
status master
149
;;
150
condrestart)
151
[ $running -eq 0 ] || exit 0
152
stop
153
start
154
;;
155
*)
156
echo $"Usage: $0 {start|stop|restart|reload|abort|flush|check|status|condrestart}"
157
exit 2
158
esac
159
160
exit $?
161