fix(postfix): Relax TLS settings to TLSv1.2/medium for broader SMTP relay compatibility

This commit is contained in:
Thorsten Roßner
2025-09-23 08:02:39 +02:00
parent 776fe92ae1
commit 31cbd9af1a
2 changed files with 4 additions and 8 deletions

View File

@@ -50,10 +50,8 @@ postfix:
{{- if .Values.apps.dkimpy.enabled }}
dkimpyHost: "opendesk-dkimpy-milter.{{ .Release.Namespace }}.svc.{{.Values.cluster.networking.domain }}:8892"
{{- end }}
minTLSVersion: "TLSv1.3"
smtpdTLSMandatoryCiphers: "high"
minTLSVersion: "TLSv1.2"
smtpdTLSMandatoryCiphers: "medium"
rspamdHost: ""
{{- if .Values.smtp.host }}
relayHost:

View File

@@ -72,10 +72,8 @@ postfix:
# Warning: This setting allows unauthenticated mail relay from relayNets!
allowRelayNets: true
relayNets: {{ join " " .Values.cluster.networking.cidr | quote }}
minTLSVersion: "TLSv1.3"
smtpdTLSMandatoryCiphers: "high"
minTLSVersion: "TLSv1.2"
smtpdTLSMandatoryCiphers: "medium"
smtpSASLAuthEnable: "yes"
smtpSASLPasswordMaps: "lmdb:/etc/postfix/sasl_passwd.map"
smtpTLSSecurityLevel: "encrypt"