Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

55 líneas
2.3 KiB

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