coreos-home-server/config/service/dovecot/container/run-dovecot
Alex Palaistras 5367d2650e dovecot: Activate FTS, ManagedSieve plugins
This commit enables FTS via Xapian, and exposes the port required for
ManagedSieve integration with Dovecot; additionally, bugs in the
integration of LMTP with RSpamd have been fixed.

In support of these changes, configuration files that were previously
split into container-based and service-based are now consolidated, and
we now ensure that only our own container-based configuration is used
when running Dovecot.
2021-11-13 13:12:24 +00:00

17 lines
514 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.
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