3
0
mirror of https://github.com/mastodon/chart synced 2025-05-18 04:53:21 +00:00

quote smtp from, return and reply addresses

This commit is contained in:
Florian Schwab 2025-02-07 23:12:50 +01:00
parent 4f85998722
commit 615698fb40

View File

@ -137,10 +137,10 @@ data:
SMTP_ENABLE_STARTTLS_AUTO: {{ . | quote }} SMTP_ENABLE_STARTTLS_AUTO: {{ . | quote }}
{{- end }} {{- end }}
{{- with .Values.mastodon.smtp.from_address }} {{- with .Values.mastodon.smtp.from_address }}
SMTP_FROM_ADDRESS: {{ . }} SMTP_FROM_ADDRESS: {{ . | quote }}
{{- end }} {{- end }}
{{- with .Values.mastodon.smtp.return_path }} {{- with .Values.mastodon.smtp.return_path }}
SMTP_RETURN_PATH: {{ . }} SMTP_RETURN_PATH: {{ . | quote }}
{{- end }} {{- end }}
{{- with .Values.mastodon.smtp.openssl_verify_mode }} {{- with .Values.mastodon.smtp.openssl_verify_mode }}
SMTP_OPENSSL_VERIFY_MODE: {{ . }} SMTP_OPENSSL_VERIFY_MODE: {{ . }}
@ -149,7 +149,7 @@ data:
SMTP_PORT: {{ . | quote }} SMTP_PORT: {{ . | quote }}
{{- end }} {{- end }}
{{- with .Values.mastodon.smtp.reply_to }} {{- with .Values.mastodon.smtp.reply_to }}
SMTP_REPLY_TO: {{ . }} SMTP_REPLY_TO: {{ . | quote }}
{{- end }} {{- end }}
{{- with .Values.mastodon.smtp.server }} {{- with .Values.mastodon.smtp.server }}
SMTP_SERVER: {{ . }} SMTP_SERVER: {{ . }}