|
|
@ -77,3 +77,14 @@ data: |
|
|
|
reject = {{ .Values.rspamd.actions.reject }}; # Reject when reaching this score |
|
|
|
add_header = {{ .Values.rspamd.actions.add_header }}; # Add header when reaching this score |
|
|
|
greylist = {{ .Values.rspamd.actions.greylist }}; # Apply greylisting when reaching this score (will emit `soft reject action`) |
|
|
|
antivirus.conf: |- |
|
|
|
clamav { |
|
|
|
{{- range $key, $value := .Values.rspamd.antivirus.clamav }} |
|
|
|
{{ if or (eq $value "true") (eq $value "false") -}} |
|
|
|
{{ $key }} = {{ $value }}; |
|
|
|
{{- else -}} |
|
|
|
{{ $key }} = "{{ $value }}"; |
|
|
|
{{- end -}} |
|
|
|
{{- end }} |
|
|
|
} |
|
|
|
|