No Description
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.

main.yml 711B

123456789101112131415161718192021222324
  1. secret_root: '{{ inventory_dir | realpath }}'
  2. secret_name: 'secret'
  3. secret: '{{ secret_root + "/" + secret_name }}'
  4. # must match values in roles/common
  5. db_admin_username: 'postgres'
  6. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password', length=32) }}"
  7. mail_db_username: 'mailuser'
  8. mail_db_password: "{{ lookup('password', secret + '/' + 'mail_db_password', length=32) }}"
  9. mail_db_database: 'mailserver'
  10. mail_server_hostname: "mail.{{ domain }}"
  11. mail_server_autoconfig_hostname: "autoconfig.{{ domain }}"
  12. mail_header_privacy: 1
  13. friendly_networks:
  14. - ""
  15. virtual_domains: []
  16. mail_virtual_users: []
  17. mail_virtual_aliases: []
  18. zpush_timezone: "{{ common_timezone | default('Etc/UTC') }}"