v5: support plus address extensions
All checks were successful
Build Docker images / docker (eumau/postfix, 5) (push) Successful in 3m6s
All checks were successful
Build Docker images / docker (eumau/postfix, 5) (push) Successful in 3m6s
This commit is contained in:
parent
c5b8641454
commit
f474d081a0
@ -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
|
||||||
|
@ -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=""
|
||||||
|
@ -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",
|
||||||
|
@ -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 }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user