exherbo-dockermail/boot

50 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

#!/bin/bash
2015-07-08 12:17:04 +00:00
# Update hostname if given
2014-11-07 15:12:15 +00:00
if [ -f /mail_settings/myhostname ]; then
sed -i -e "s/myhostname = localhost/myhostname = $(sed 's:/:\\/:g' /mail_settings/myhostname)/" /etc/postfix/main.cf
2014-11-11 01:31:46 +00:00
echo $(sed 's:/:\\/:g' /mail_settings/myhostname) > /etc/mailname
2014-11-07 15:12:15 +00:00
fi
2015-07-08 12:17:04 +00:00
# Configure mail delivery to dovecot
2014-11-03 15:05:19 +00:00
cp /mail_settings/aliases /etc/postfix/virtual
cp /mail_settings/domains /etc/postfix/virtual-mailbox-domains
2015-07-08 12:17:04 +00:00
# Parse mailbox settings
mkdir -p /etc/postfix/tmp
2014-11-03 15:05:19 +00:00
awk < /etc/postfix/virtual '{ print $2 }' > /etc/postfix/tmp/virtual-receivers
sed -r 's,(.+)@(.+),\2/\1/,' /etc/postfix/tmp/virtual-receivers > /etc/postfix/tmp/virtual-receiver-folders
paste /etc/postfix/tmp/virtual-receivers /etc/postfix/tmp/virtual-receiver-folders > /etc/postfix/virtual-mailbox-maps
2015-07-08 12:17:04 +00:00
# Give postfix ownership of its files
2014-11-03 15:05:19 +00:00
chown -R postfix:postfix /etc/postfix
2015-07-08 12:17:04 +00:00
# Map virtual aliases and user/filesystem mappings
2014-11-03 15:05:19 +00:00
postmap /etc/postfix/virtual
postmap /etc/postfix/virtual-mailbox-maps
chown -R postfix:postfix /etc/postfix
# add global sieve script
mkdir -p /vmail/sieve && cp /mail_settings/spam-global.sieve /vmail/sieve/
2015-07-08 12:17:04 +00:00
# Make user vmail own all mail folders
2014-11-03 15:05:19 +00:00
chown -R vmail:vmail /vmail
chmod u+w /vmail
# Add password file
cp /mail_settings/passwords /etc/dovecot/passwd
2015-07-08 12:17:04 +00:00
# set mynetworks
sed -i \
-e "s#^mynetworks = .*#mynetworks = $(cat /mail_settings/postfix-networks | tr -d '\n')#" \
/etc/postfix/main.cf
2015-07-26 21:19:24 +00:00
# Run boot scripts
for SCRIPT in /boot.d/*
do
if [ -f "$SCRIPT" -a -x "$SCRIPT" ]; then
"$SCRIPT"
fi
done