mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-02-25 00:14:11 +01:00
This is done for a few reasons: - less globals and more indepdendence for each role is better. We rely on various externally-hosted roles and they don't rely on this global either. - `matrix_container_global_registry_prefix` could make people think they could just override this variable and have all their images pull from elsewhere. This is rarely the case, unless you've taken special care to mirror all the various components (from their respective registries) to your own. In such a case, you probably know what you're mirroring and can adjust individual variables. - nowadays, various components live on different registries. With Docker Inc tightening rate limits for Docker Hub, it's even more likely that we'll see increased diversity in where images are hosted
68 lines
3.2 KiB
YAML
68 lines
3.2 KiB
YAML
---
|
|
# Project source code URL: https://github.com/devture/email2matrix
|
|
|
|
matrix_email2matrix_enabled: true
|
|
|
|
matrix_email2matrix_base_path: "{{ matrix_base_data_path }}/email2matrix"
|
|
matrix_email2matrix_config_dir_path: "{{ matrix_email2matrix_base_path }}/config"
|
|
matrix_email2matrix_docker_src_files_path: "{{ matrix_email2matrix_base_path }}/docker-src"
|
|
|
|
matrix_email2matrix_container_image_self_build: false
|
|
matrix_email2matrix_container_image_self_build_repo: "https://github.com/devture/email2matrix.git"
|
|
matrix_email2matrix_container_image_self_build_branch: "{{ matrix_email2matrix_version }}"
|
|
|
|
# renovate: datasource=docker depName=devture/email2matrix
|
|
matrix_email2matrix_version: 1.1.0
|
|
matrix_email2matrix_docker_image_prefix: "{{ 'localhost/' if matrix_email2matrix_container_image_self_build else 'docker.io/' }}"
|
|
matrix_email2matrix_docker_image: "{{ matrix_email2matrix_docker_image_prefix }}devture/email2matrix:{{ matrix_email2matrix_version }}"
|
|
matrix_email2matrix_docker_image_force_pull: "{{ matrix_email2matrix_docker_image.endswith(':latest') }}"
|
|
|
|
matrix_email2matrix_container_network: ""
|
|
|
|
matrix_email2matrix_container_additional_networks: "{{ matrix_email2matrix_container_additional_networks_auto + matrix_email2matrix_container_additional_networks_custom }}"
|
|
matrix_email2matrix_container_additional_networks_auto: []
|
|
matrix_email2matrix_container_additional_networks_custom: []
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_email2matrix_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-corporal.service depends on
|
|
matrix_email2matrix_systemd_required_services_list: "{{ matrix_email2matrix_systemd_required_services_list_default + matrix_email2matrix_systemd_required_services_list_auto + matrix_email2matrix_systemd_required_services_list_custom }}"
|
|
matrix_email2matrix_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
|
|
matrix_email2matrix_systemd_required_services_list_auto: []
|
|
matrix_email2matrix_systemd_required_services_list_custom: []
|
|
|
|
# Controls where the matrix-email2matrix container exposes the SMTP (tcp/2525 in the container).
|
|
#
|
|
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:2525").
|
|
#
|
|
# By default, we listen on port 25 on all of the host's network interfaces.
|
|
matrix_email2matrix_smtp_host_bind_port: "25"
|
|
|
|
matrix_email2matrix_smtp_hostname: "{{ matrix_server_fqn_matrix }}"
|
|
|
|
# A list of mailbox to Matrix mappings.
|
|
#
|
|
# Example:
|
|
# matrix_email2matrix_matrix_mappings:
|
|
# - MailboxName: "mailbox1"
|
|
# MatrixRoomId: "!qporfwt:{{ matrix_domain }}"
|
|
# MatrixHomeserverUrl: "{{ matrix_homeserver_url }}"
|
|
# MatrixUserId: "@email2matrix1:{{ matrix_domain }}"
|
|
# MatrixAccessToken: "MATRIX_ACCESS_TOKEN_HERE"
|
|
# IgnoreSubject: false
|
|
# IgnoreBody: false
|
|
# SkipMarkdown: false
|
|
#
|
|
# - MailboxName: "mailbox2"
|
|
# MatrixRoomId: "!aaabaa:{{ matrix_domain }}"
|
|
# MatrixHomeserverUrl: "{{ matrix_homeserver_url }}"
|
|
# MatrixUserId: "@email2matrix2:{{ matrix_domain }}"
|
|
# MatrixAccessToken: "MATRIX_ACCESS_TOKEN_HERE"
|
|
# IgnoreSubject: true
|
|
# IgnoreBody: false
|
|
# SkipMarkdown: true
|
|
matrix_email2matrix_matrix_mappings: []
|
|
|
|
matrix_email2matrix_misc_debug: false
|