You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mailu/postfix/start.sh

31 lines
727 B
Bash

#!/bin/bash
# Substitute configuration
for VARIABLE in `env | cut -f1 -d=`; do
sed -i "s={{ $VARIABLE }}=${!VARIABLE}=g" /etc/postfix/*.cf
done
# Override Postfix configuration
if [ -f /config/main.cf ]; then
while read line; do
postconf -e "$line"
done < /config/main.cf
echo "Loaded 'config/main.cf'"
else
echo "No extra postfix settings loaded because optional '/config/main.cf' not provided."
fi
# Include table-map files
if [ "$(ls -A /config/*.map)" ]; then
cp /config/*.map /etc/postfix/
postmap /etc/postfix/*.map
rm /etc/postfix/*.map
chown root:root /etc/postfix/*.db
chmod 0600 /etc/postfix/*.db
fi
# Actually run Postfix
rm -f /var/run/rsyslogd.pid
/usr/lib/postfix/master &
rsyslogd -n