You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
448 B
10 lines
448 B
2 years ago
|
vault_mail_config:
|
||
|
smtp_host: "{{ mail_account.server | d(mail_server.mta_actual_hostname ~ '.' ~ int_tld) }}"
|
||
|
smtp_from: "{{ mail_account.from | d(mail_account.username ~ '@' ~ (mail_account.domain | d(mail_server.tld))) }}"
|
||
|
smtp_from_name: "{{ 'Vaultwarden | ' ~ org }}"
|
||
|
smtp_security: force_tls
|
||
|
smtp_port: 465
|
||
|
smtp_username: "{{ mail_account.username }}"
|
||
|
smtp_password: "{{ mail_account.password }}"
|
||
|
helo_name: "{{ host_fqdn }}"
|