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:
parent
4c349eda77
commit
8a3fdf20ce
1 changed files with 1 additions and 1 deletions
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue