123456789101112131415161718192021222324 |
- secret_root: '{{ inventory_dir | realpath }}'
- secret_name: 'secret'
- secret: '{{ secret_root + "/" + secret_name }}'
-
- # must match values in roles/common
- db_admin_username: 'postgres'
- db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password length=32') }}"
-
- mail_db_username: 'mailuser'
- mail_db_password: "{{ lookup('password', secret + '/' + 'mail_db_password length=32') }}"
- mail_db_database: 'mailserver'
-
- mail_server_hostname: "mail.{{ domain }}"
- mail_server_autoconfig_hostname: "autoconfig.{{ domain }}"
- mail_header_privacy: 1
-
- friendly_networks:
- - ""
-
- virtual_domains: []
- mail_virtual_users: []
- mail_virtual_aliases: []
-
- zpush_timezone: "{{ common_timezone | default('Etc/UTC') }}"
|