Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

44 řádky
1.6 KiB

  1. matrix_email2matrix_enabled: true
  2. matrix_email2matrix_base_path: "{{ matrix_base_data_path }}/email2matrix"
  3. matrix_email2matrix_config_dir_path: "{{ matrix_email2matrix_base_path }}/config"
  4. matrix_email2matrix_docker_image: "devture/email2matrix:1.0.1"
  5. matrix_email2matrix_docker_image_force_pull: "{{ matrix_email2matrix_docker_image.endswith(':latest') }}"
  6. # A list of extra arguments to pass to the container
  7. matrix_email2matrix_container_extra_arguments: []
  8. # List of systemd services that matrix-corporal.service depends on
  9. matrix_email2matrix_systemd_required_services_list: ['docker.service']
  10. # Controls where the matrix-email2matrix container exposes the SMTP (tcp/2525 in the container).
  11. #
  12. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:2525").
  13. #
  14. # By default, we listen on port 25 on all of the host's network interfaces.
  15. matrix_email2matrix_smtp_host_bind_port: "25"
  16. matrix_email2matrix_smtp_hostname: "{{ matrix_server_fqn_matrix }}"
  17. # A list of mailbox to Matrix mappings.
  18. #
  19. # Example:
  20. # matrix_email2matrix_matrix_mappings:
  21. # - MailboxName: "mailbox1"
  22. # MatrixRoomId: "!bpcwlxIUxVvvgXcbjy:example.com"
  23. # MatrixHomeserverUrl: "{{ matrix_homeserver_url }}"
  24. # MatrixUserId": "@email2matrix:{{ matrix_domain }}"
  25. # MatrixAccessToken": "TOKEN_HERE"
  26. # IgnoreSubject: false
  27. #
  28. # - MailboxName: "mailbox2"
  29. # MatrixRoomId: "!another:example.com"
  30. # MatrixHomeserverUrl: "{{ matrix_homeserver_url }}"
  31. # MatrixUserId": "@email2matrix:{{ matrix_domain }}"
  32. # MatrixAccessToken": "TOKEN_HERE"
  33. # IgnoreSubject: true
  34. matrix_email2matrix_matrix_mappings: []
  35. matrix_email2matrix_misc_debug: false