coreos-home-server/service/dovecot/container/run-dovecot
Alex Palaistras 524384051d dovecot: Consolidate container build instructions
This improves cacheability of layers by consolidating instructions
across different container builds. Future work will involve installing
from an external binary repository.
2024-01-02 15:31:49 +00:00

19 lines
592 B
Bash
Executable File

#!/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
# 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.
exec /usr/sbin/dovecot -F