mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
0da66ccb34
* docker_container first, then fall back to docker_image + test changes to support + test change to wait for smtp port to fix flakey tests since https://github.com/docker-mailserver/docker-mailserver/pull/2104 * quick fix * Update setup.sh Co-authored-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com> Co-authored-by: Casper <casperklein@users.noreply.github.com>
30 lines
719 B
Bash
Executable file
30 lines
719 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# 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
|
|
|
|
# wait until postfix is dead (triggered by trap)
|
|
while kill -0 "$(< /var/spool/postfix/pid/master.pid)"
|
|
do
|
|
sleep 5
|
|
done
|