mirror of
https://gitlab.opencode.de/bmi/opendesk/deployment/opendesk.git
synced 2025-12-06 15:31:38 +01:00
feat(helmfile): Add templating of smtp.spamMilter.*; it is strongly recommended to use this feature to address spam filtering and SPF / DKIM validation of incoming mails
This commit is contained in:
@@ -346,7 +346,9 @@ validation for incoming mails in place. Otherwise external senders could spoof i
|
||||
|
||||
```yaml
|
||||
smtp:
|
||||
spamMilterHost: "rpamd.domain.internal"
|
||||
spamMilter:
|
||||
host: "rspamd.domain.internal"
|
||||
port: "11332"
|
||||
```
|
||||
|
||||
### TURN configuration
|
||||
|
||||
@@ -50,7 +50,7 @@ postfix:
|
||||
{{- if .Values.apps.dkimpy.enabled }}
|
||||
dkimpyHost: "opendesk-dkimpy-milter.{{ .Release.Namespace }}.svc.{{.Values.cluster.networking.domain }}:8892"
|
||||
{{- end }}
|
||||
rspamdHost: {{ .Values.spamMilterHost | quote }}
|
||||
rspamdHost: "{{ .Values.smtp.spamMilter.host }}:{{ .Values.smtp.spamMilter.port }}"
|
||||
minTLSVersion: "TLSv1.2"
|
||||
smtpdTLSMandatoryCiphers: "medium"
|
||||
{{- if .Values.smtp.host }}
|
||||
|
||||
@@ -7,7 +7,9 @@ smtp:
|
||||
username: ""
|
||||
password: {{ env "SMTP_PASSWORD" | quote }}
|
||||
localpartNoReply: "no-reply"
|
||||
spamMilterHost: ""
|
||||
spamMilter:
|
||||
host: ""
|
||||
port: ""
|
||||
|
||||
# For the following settings to have effect `apps.dkimpy.enabled` must be `true`.
|
||||
dkim:
|
||||
|
||||
Reference in New Issue
Block a user