๐Ÿ“— Ansible playbooks and roles for building an idempotent, interconnected and scalable infrastructure
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.
 
 
ansible-playbooks/roles/vault/vars/mail.yml

9 lines
448 B

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 }}"