mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
handle DEFER_ON_TLS_ERROR as bool
use /conf/mta-sts-daemon.yml when override is missing
This commit is contained in:
parent
d464187477
commit
b02ceab72f
@ -20,7 +20,6 @@ RUN apk add --no-cache postfix postfix-pcre cyrus-sasl-login
|
||||
|
||||
COPY conf /conf
|
||||
COPY start.py /start.py
|
||||
COPY mta-sts-daemon.yml /etc/
|
||||
|
||||
EXPOSE 25/tcp 10025/tcp
|
||||
VOLUME ["/queue"]
|
||||
|
@ -59,7 +59,7 @@ tls_ssl_options = NO_COMPRESSION, NO_TICKET
|
||||
smtp_tls_mandatory_protocols = !SSLv2, !SSLv3
|
||||
smtp_tls_protocols =!SSLv2,!SSLv3
|
||||
smtp_tls_security_level = {{ OUTBOUND_TLS_LEVEL|default('dane') }}
|
||||
smtp_tls_dane_insecure_mx_policy = {% if DEFER_ON_TLS_ERROR == 'false' %}may{% else %}dane{% endif %}
|
||||
smtp_tls_dane_insecure_mx_policy = {{ 'dane' if DEFER_ON_TLS_ERROR else 'may' }}
|
||||
smtp_tls_policy_maps=lmdb:/etc/postfix/tls_policy.map, ${podop}dane, socketmap:unix:/tmp/mta-sts.socket:postfix
|
||||
smtp_tls_CApath = /etc/ssl/certs
|
||||
smtp_tls_session_cache_database = lmdb:/dev/shm/postfix/smtp_scache
|
||||
|
@ -6,5 +6,5 @@ cache:
|
||||
options:
|
||||
cache_size: 10000
|
||||
default_zone:
|
||||
strict_testing: {{ DEFER_ON_TLS_ERROR |default('true') }}
|
||||
strict_testing: {{ 'true' if DEFER_ON_TLS_ERROR else 'false' }}
|
||||
timeout: 4
|
@ -76,8 +76,9 @@ for map_file in glob.glob("/overrides/*.map"):
|
||||
os.remove(destination)
|
||||
|
||||
if os.path.exists("/overrides/mta-sts-daemon.yml"):
|
||||
shutil.copyfile("/overrides/mta-sts-daemon.yml", "/etc/mta-sts-daemon.yml")
|
||||
conf.jinja("/etc/mta-sts-daemon.yml", os.environ, "/etc/mta-sts-daemon.yml")
|
||||
conf.jinja("/overrides/mta-sts-daemon.yml", os.environ, "/etc/mta-sts-daemon.yml")
|
||||
else:
|
||||
conf.jinja("/conf/mta-sts-daemon.yml", os.environ, "/etc/mta-sts-daemon.yml")
|
||||
|
||||
if not os.path.exists("/etc/postfix/tls_policy.map.lmdb"):
|
||||
open("/etc/postfix/tls_policy.map", "a").close()
|
||||
|
Loading…
Reference in New Issue
Block a user