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

19 lines
592 B
Plaintext
Raw Normal View History

#!/bin/sh
set -eu
# 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" > "${file%.template}"
done
2021-11-13 13:24:15 +00:00
# Compile Sieve scripts and ensure correct permissions.
find /etc/dovecot -name '*.sieve' -execdir sievec {} \;
2021-11-13 13:24:15 +00:00
find /etc/dovecot -name '*.script' -execdir chmod 0755 {} \;
# Set up environment variables for Rspamd integration.
env | awk -F '_' '$1 == "RSPAMD" {print $0}' > /etc/dovecot/rspamd.env
# Run Dovecot daemon.
exec /usr/sbin/dovecot -F