1
1
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_gitea.git synced 2024-08-16 11:39:50 +02:00

Quote mailer password

Quoting allows for special characters, see https://docs.gitea.io/en-us/email-setup/
This commit is contained in:
Andreas Brain 2021-06-01 17:28:56 +02:00 committed by GitHub
parent 4c349eda77
commit 8a3fdf20ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ SKIP_VERIFY = {{ gitea_mailer_skip_verify | ternary('true', 'false') }}
IS_TLS_ENABLED = {{ gitea_mailer_tls_enabled | ternary('true', 'false') }}
FROM = {{ gitea_mailer_from }}
USER = {{ gitea_mailer_user }}
PASSWD = {{ gitea_mailer_password }}
PASSWD = `{{ gitea_mailer_password }}`
SUBJECT_PREFIX = {{ gitea_subject_prefix }}
MAILER_TYPE = {{ gitea_mailer_type }}
{{ gitea_mailer_extra_config }}