Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

16 wiersze
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: ""