coreos-home-server/config/service/dovecot/container/run-dovecot

17 lines
514 B
Plaintext
Raw Normal View History

#!/bin/sh
# Prepare configuration files for environment variable substitution.
ENV_NAMES="$(env | awk -F= '{printf "$%s ", $1}')"
for file in /etc/dovecot/*.template; do
envsubst "$ENV_NAMES" < "$file" > "$(echo "$file" | awk -F '.template$' '{print $1}')"
done
# Compile Sieve scripts.
find /etc/dovecot -name '*.sieve' -execdir sievec {} \;
# Set up environment variables for Rspamd integration.
env | awk -F_ '$1 == "RSPAMD" {print $0}' > /etc/dovecot/rspamd.env
# Run Dovecot daemon.
/usr/sbin/dovecot -F