Matrix Docker Ansible eploy
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.
 
 

35 lines
1.5 KiB

  1. ---
  2. # Project source code URL: https://github.com/devture/exim-relay
  3. matrix_mailer_enabled: true
  4. matrix_mailer_base_path: "{{ matrix_base_data_path }}/mailer"
  5. matrix_mailer_container_image_self_build: false
  6. matrix_mailer_container_image_self_build_repository_url: "https://github.com/devture/exim-relay"
  7. matrix_mailer_container_image_self_build_src_files_path: "{{ matrix_mailer_base_path }}/docker-src"
  8. matrix_mailer_container_image_self_build_version: "{{ matrix_mailer_docker_image.split(':')[1] }}"
  9. matrix_mailer_version: 4.95-r0-4
  10. matrix_mailer_docker_image: "{{ matrix_mailer_docker_image_name_prefix }}devture/exim-relay:{{ matrix_mailer_version }}"
  11. matrix_mailer_docker_image_name_prefix: "{{ 'localhost/' if matrix_mailer_container_image_self_build else matrix_container_global_registry_prefix }}"
  12. matrix_mailer_docker_image_force_pull: "{{ matrix_mailer_docker_image.endswith(':latest') }}"
  13. # The user/group that the container runs with.
  14. # These match the `exim` user/group within the container image.
  15. matrix_mailer_container_user_uid: 100
  16. matrix_mailer_container_user_gid: 101
  17. # A list of extra arguments to pass to the container
  18. matrix_mailer_container_extra_arguments: []
  19. matrix_mailer_hostname: "{{ matrix_server_fqn_matrix }}"
  20. matrix_mailer_sender_address: "matrix@{{ matrix_domain }}"
  21. matrix_mailer_relay_use: false
  22. matrix_mailer_relay_host_name: "mail.example.com"
  23. matrix_mailer_relay_host_port: 587
  24. matrix_mailer_relay_auth: false
  25. matrix_mailer_relay_auth_username: ""
  26. matrix_mailer_relay_auth_password: ""