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.
 
 

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