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

18 lines
606 B
Bash
Executable File

#!/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 and ensure correct permissions.
find /etc/dovecot -name '*.sieve' -execdir sievec {} \;
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.
/usr/sbin/dovecot -F