2020-10-21 16:16:32 +00:00
|
|
|
#! /bin/bash
|
2020-09-05 14:19:12 +00:00
|
|
|
|
2017-08-07 15:39:40 +00:00
|
|
|
# You cannot start postfix in some foreground mode and
|
|
|
|
# it's more or less important that docker doesn't kill
|
|
|
|
# postfix and its chilren if you stop the container.
|
|
|
|
#
|
|
|
|
# Use this script with supervisord and it will take
|
|
|
|
# care about starting and stopping postfix correctly.
|
|
|
|
#
|
|
|
|
# supervisord config snippet for postfix-wrapper:
|
|
|
|
#
|
|
|
|
# [program:postfix]
|
|
|
|
# process_name = postfix
|
|
|
|
# command = /path/to/postfix-wrapper.sh
|
|
|
|
# startsecs = 0
|
|
|
|
# autorestart = false
|
|
|
|
#
|
|
|
|
|
|
|
|
trap "service postfix stop" SIGINT
|
|
|
|
trap "service postfix stop" SIGTERM
|
|
|
|
trap "service postfix reload" SIGHUP
|
|
|
|
|
|
|
|
service postfix start
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
# wait until postfix is dead (triggered by trap)
|
2020-09-23 19:53:07 +00:00
|
|
|
while kill -0 "$(< /var/spool/postfix/pid/master.pid)"
|
2020-09-05 14:19:12 +00:00
|
|
|
do
|
2017-08-07 15:39:40 +00:00
|
|
|
sleep 5
|
|
|
|
done
|