fix(authelia): handle input that might be transalted into objects/arrays (#13319)
This commit is contained in:
parent
71821900dc
commit
c01ed20d4a
|
@ -35,7 +35,7 @@ sources:
|
|||
- https://github.com/authelia/chartrepo
|
||||
- https://github.com/authelia/authelia
|
||||
type: application
|
||||
version: 19.0.1
|
||||
version: 19.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- security
|
||||
|
|
|
@ -219,12 +219,12 @@ data:
|
|||
{{- with $notifier.smtp.username }}
|
||||
username: {{ . }}
|
||||
{{- end }}
|
||||
sender: {{ $notifier.smtp.sender }}
|
||||
identifier: {{ $notifier.smtp.identifier }}
|
||||
sender: {{ $notifier.smtp.sender | quote }}
|
||||
identifier: {{ $notifier.smtp.identifier | quote }}
|
||||
subject: {{ $notifier.smtp.subject | quote }}
|
||||
startup_check_address: {{ $notifier.smtp.startup_check_address }}
|
||||
disable_require_tls: {{ $notifier.smtp.disable_require_tls }}
|
||||
disable_html_emails: {{ $notifier.smtp.disable_html_emails }}
|
||||
startup_check_address: {{ $notifier.smtp.startup_check_address | quote }}
|
||||
disable_require_tls: {{ $notifier.smtp.disable_require_tls | quote }}
|
||||
disable_html_emails: {{ $notifier.smtp.disable_html_emails | quote }}
|
||||
tls:
|
||||
server_name: {{ $notifier.smtp.tls.server_name | default $notifier.smtp.host }}
|
||||
minimum_version: {{ $notifier.smtp.tls.minimum_version | default "TLS1.2" }}
|
||||
|
|
Loading…
Reference in New Issue