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.
 
 

16 line
684 B

  1. # By default, this playbook sets up a postfix mailer server (running in a container).
  2. # This is so that Matrix Synapse can send email reminders for unread messages.
  3. # Other services (like mxisd), however, also use that mailer to send emails through it.
  4. matrix_mailer_enabled: true
  5. matrix_mailer_base_path: "{{ matrix_base_data_path }}/mailer"
  6. matrix_mailer_docker_image: "panubo/postfix:latest"
  7. matrix_mailer_sender_address: "matrix@{{ hostname_identity }}"
  8. matrix_mailer_relay_use: false
  9. matrix_mailer_relay_host_name: "mail.example.com"
  10. matrix_mailer_relay_host_port: 587
  11. matrix_mailer_relay_auth: false
  12. matrix_mailer_relay_auth_username: ""
  13. matrix_mailer_relay_auth_password: ""