v5: support plus address extensions
All checks were successful
Build Docker images / docker (eumau/postfix, 5) (push) Successful in 3m6s

This commit is contained in:
Mauro Torrez 2024-03-11 13:33:06 -03:00
parent c5b8641454
commit f474d081a0
4 changed files with 7 additions and 1 deletions

View File

@ -15,7 +15,7 @@ jobs:
repo: repo:
- eumau/postfix - eumau/postfix
tag: tag:
- "4" - "5"
steps: steps:
- -
name: Set up QEMU name: Set up QEMU

View File

@ -25,6 +25,8 @@ ENV POSTSCREEN_DNSBL_THRESHOLD="3"
ENV POSTSCREEN_DNSBL_WHITELIST_THRESHOLD="-1" ENV POSTSCREEN_DNSBL_WHITELIST_THRESHOLD="-1"
ENV POSTSCREEN_ENABLE=no ENV POSTSCREEN_ENABLE=no
ENV POSTSCREEN_GREET_ACTION="enforce" ENV POSTSCREEN_GREET_ACTION="enforce"
ENV PROPAGATE_UNMATCHED_EXTENSIONS="canonical, virtual"
ENV RECIPIENT_DELIMITER="+"
ENV RELAYHOST="" ENV RELAYHOST=""
ENV SMTP_FALLBACK_RELAY="" ENV SMTP_FALLBACK_RELAY=""
ENV SMTP_SASL_AUTH_ENABLE="" ENV SMTP_SASL_AUTH_ENABLE=""

View File

@ -10,6 +10,8 @@ keys = [
"/myhostname", "/myhostname",
"/mynetworks", "/mynetworks",
"/mynetworks/style", "/mynetworks/style",
"/propagate/unmatched/extensions",
"/recipient/delimiter",
"/smtp/tls/security/level", "/smtp/tls/security/level",
"/smtpd/client/restrictions", "/smtpd/client/restrictions",
"/smtpd/data/restrictions", "/smtpd/data/restrictions",

View File

@ -40,6 +40,8 @@ postconf alias_maps=hash:/etc/aliases
{{ with getv "/myhostname" }}postconf myhostname='{{.}}'{{ end }} {{ with getv "/myhostname" }}postconf myhostname='{{.}}'{{ end }}
{{ with getv "/mynetworks" }}postconf mynetworks='{{.}}'{{ end }} {{ with getv "/mynetworks" }}postconf mynetworks='{{.}}'{{ end }}
{{ with getv "/mynetworks/style" }}postconf mynetworks_style='{{.}}'{{ end }} {{ with getv "/mynetworks/style" }}postconf mynetworks_style='{{.}}'{{ end }}
{{ with getv "/propagate/unmatched/extensions" }}postconf propagate_unmatched_extensions='{{.}}'{{ end }}
{{ with getv "/recipient/delimiter" }}postconf recipient_delimiter='{{.}}'{{ end }}
{{ with getv "/smtp/tls/security/level" }}postconf smtp_tls_security_level='{{.}}'{{ end }} {{ with getv "/smtp/tls/security/level" }}postconf smtp_tls_security_level='{{.}}'{{ end }}
{{ with getv "/smtpd/client/restrictions" }}postconf smtpd_client_restrictions='{{.}}'{{ end }} {{ with getv "/smtpd/client/restrictions" }}postconf smtpd_client_restrictions='{{.}}'{{ end }}
{{ with getv "/smtpd/data/restrictions" }}postconf smtpd_data_restrictions='{{.}}'{{ end }} {{ with getv "/smtpd/data/restrictions" }}postconf smtpd_data_restrictions='{{.}}'{{ end }}