| @@ -1,3 +1,12 @@ | |||||
| # 2022-08-23 | |||||
| ## Postmoogle email bridge support | |||||
| Thanks to [Aine](https://gitlab.com/etke.cc) of [etke.cc](https://etke.cc/), the playbook can now set up the new [Postmoogle](https://gitlab.com/etke.cc/postmoogle) email bridge/bot. Postmoogle is like the [email2matrix bridge](https://github.com/devture/email2matrix) (also [already supported by the playbook](docs/configuring-playbook-email2matrix.md)), but more capable and with the intention to soon support *sending* emails, not just receiving. | |||||
| See our [Setting up Postmoogle email bridging](docs/configuring-playbook-bot-postmoogle.md) documentation to get started. | |||||
| # 2022-08-10 | # 2022-08-10 | ||||
| ## mautrix-whatsapp default configuration changes | ## mautrix-whatsapp default configuration changes | ||||
| @@ -113,6 +113,8 @@ Using this playbook, you can get the following services configured on your serve | |||||
| - (optional) [honoroit](https://gitlab.com/etke.cc/honoroit) helpdesk bot - see [docs/configuring-playbook-bot-honoroit.md](docs/configuring-playbook-bot-honoroit.md) for setup documentation | - (optional) [honoroit](https://gitlab.com/etke.cc/honoroit) helpdesk bot - see [docs/configuring-playbook-bot-honoroit.md](docs/configuring-playbook-bot-honoroit.md) for setup documentation | ||||
| - (optional) [Postmoogle](https://gitlab.com/etke.cc/postmoogle) email to matrix bot - see [docs/configuring-playbook-bot-postmoogle.md](docs/configuring-playbook-bot-postmoogle.md) for setup documentation | |||||
| - (optional) [Go-NEB](https://github.com/matrix-org/go-neb) multi functional bot written in Go - see [docs/configuring-playbook-bot-go-neb.md](docs/configuring-playbook-bot-go-neb.md) for setup documentation | - (optional) [Go-NEB](https://github.com/matrix-org/go-neb) multi functional bot written in Go - see [docs/configuring-playbook-bot-go-neb.md](docs/configuring-playbook-bot-go-neb.md) for setup documentation | ||||
| - (optional) [Mjolnir](https://github.com/matrix-org/mjolnir), a moderation tool for Matrix - see [docs/configuring-playbook-bot-mjolnir.md](docs/configuring-playbook-bot-mjolnir.md) for setup documentation | - (optional) [Mjolnir](https://github.com/matrix-org/mjolnir), a moderation tool for Matrix - see [docs/configuring-playbook-bot-mjolnir.md](docs/configuring-playbook-bot-mjolnir.md) for setup documentation | ||||
| @@ -0,0 +1,56 @@ | |||||
| # Setting up Postmoogle (optional) | |||||
| **Note**: email bridging can also happen via the [email2matrix](configuring-playbook-email2matrix.md) bridge supported by the playbook. | |||||
| The playbook can install and configure [Postmoogle](https://gitlab.com/etke.cc/postmoogle) for you. | |||||
| It's a bot/bridge you can use to forward emails to Matrix rooms | |||||
| See the project's [documentation](https://gitlab.com/etke.cc/postmoogle) to learn what it does and why it might be useful to you. | |||||
| ## Registering the bot user | |||||
| By default, the playbook will set up the bot with a username like this: `@postmoogle:DOMAIN`. | |||||
| (to use a different username, adjust the `matrix_bot_postmoogle_login` variable). | |||||
| You **need to register the bot user manually** before setting up the bot. You can use the playbook to [register a new user](registering-users.md): | |||||
| ``` | |||||
| ansible-playbook -i inventory/hosts setup.yml --extra-vars='username=postmoogle password=PASSWORD_FOR_THE_BOT admin=no' --tags=register-user | |||||
| ``` | |||||
| Choose a strong password for the bot. You can generate a good password with a command like this: `pwgen -s 64 1`. | |||||
| ## Adjusting the playbook configuration | |||||
| Add the following configuration to your `inventory/host_vars/matrix.DOMAIN/vars.yml` file: | |||||
| ```yaml | |||||
| matrix_bot_postmoogle_enabled: true | |||||
| # Adjust this to whatever password you chose when registering the bot user | |||||
| matrix_bot_postmoogle_password: PASSWORD_FOR_THE_BOT | |||||
| ``` | |||||
| ## Installing | |||||
| After configuring the playbook, run the [installation](installing.md) command again: | |||||
| ``` | |||||
| ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start | |||||
| ``` | |||||
| ## Usage | |||||
| To use the bot, invite the `@postmoogle:DOMAIN` into a room you want to use as a mailbox. | |||||
| Then send `!pm mailbox NAME` to expose this Matrix room as an inbox with the email address `NAME@matrix.domain`. Emails sent to that email address will be forwarded to the room. | |||||
| Send `!pm help` to the room to see the bot's help menu for additional commands. | |||||
| You can also refer to the upstream [documentation](https://gitlab.com/etke.cc/postmoogle). | |||||
| @@ -1,5 +1,7 @@ | |||||
| # Setting up Email2Matrix (optional) | # Setting up Email2Matrix (optional) | ||||
| **Note**: email bridging can also happen via the [Postmoogle](configuring-playbook-bot-postmoogle.md) bot supported by the playbook. | |||||
| The playbook can install and configure [email2matrix](https://github.com/devture/email2matrix) for you. | The playbook can install and configure [email2matrix](https://github.com/devture/email2matrix) for you. | ||||
| See the project's [documentation](https://github.com/devture/email2matrix/blob/master/docs/README.md) to learn what it does and why it might be useful to you. | See the project's [documentation](https://github.com/devture/email2matrix/blob/master/docs/README.md) to learn what it does and why it might be useful to you. | ||||
| @@ -143,6 +143,8 @@ When you're done with all the configuration you'd like to do, continue with [Ins | |||||
| - [Setting up Email2Matrix](configuring-playbook-email2matrix.md) (optional) | - [Setting up Email2Matrix](configuring-playbook-email2matrix.md) (optional) | ||||
| - [Setting up Postmoogle email bridging](configuring-playbook-bot-postmoogle.md) (optional) | |||||
| - [Setting up Matrix SMS bridging](configuring-playbook-bridge-matrix-bridge-sms.md) (optional) | - [Setting up Matrix SMS bridging](configuring-playbook-bridge-matrix-bridge-sms.md) (optional) | ||||
| - [Setting up Heisenbridge bouncer-style IRC bridging](configuring-playbook-bridge-heisenbridge.md) (optional) | - [Setting up Heisenbridge bouncer-style IRC bridging](configuring-playbook-bridge-heisenbridge.md) (optional) | ||||
| @@ -100,6 +100,8 @@ These services are not part of our default installation, but can be enabled by [ | |||||
| - [etke.cc/honoroit](https://gitlab.com/etke.cc/honoroit/container_registry) - the [honoroit](https://gitlab.com/etke.cc/honoroit) helpdesk bot (optional) | - [etke.cc/honoroit](https://gitlab.com/etke.cc/honoroit/container_registry) - the [honoroit](https://gitlab.com/etke.cc/honoroit) helpdesk bot (optional) | ||||
| - [etke.cc/postmoogle](https://gitlab.com/etke.cc/postmoogle/container_registry) - the [Postmoogle](https://gitlab.com/etke.cc/postmoogle) email bridge bot (optional) | |||||
| - [matrixdotorg/go-neb](https://hub.docker.com/r/matrixdotorg/go-neb) - the [Go-NEB](https://github.com/matrix-org/go-neb) bot (optional) | - [matrixdotorg/go-neb](https://hub.docker.com/r/matrixdotorg/go-neb) - the [Go-NEB](https://github.com/matrix-org/go-neb) bot (optional) | ||||
| - [matrixdotorg/mjolnir](https://hub.docker.com/r/matrixdotorg/mjolnir) - the [mjolnir](https://github.com/matrix-org/mjolnir) moderation bot (optional) | - [matrixdotorg/mjolnir](https://hub.docker.com/r/matrixdotorg/mjolnir) - the [mjolnir](https://github.com/matrix-org/mjolnir) moderation bot (optional) | ||||
| @@ -1202,6 +1202,36 @@ matrix_bot_buscarron_container_image_self_build: "{{ matrix_architecture not in | |||||
| # | # | ||||
| ###################################################################### | ###################################################################### | ||||
| ###################################################################### | |||||
| # | |||||
| # matrix-bot-postmoogle | |||||
| # | |||||
| ###################################################################### | |||||
| # We don't enable bots by default. | |||||
| matrix_bot_postmoogle_enabled: false | |||||
| matrix_bot_postmoogle_systemd_required_services_list: | | |||||
| {{ | |||||
| ['docker.service'] | |||||
| + | |||||
| (['matrix-postgres.service'] if matrix_postgres_enabled else []) | |||||
| + | |||||
| (['matrix-synapse.service'] if matrix_synapse_enabled else []) | |||||
| }} | |||||
| # Postgres is the default, except if not using `matrix_postgres` (internal postgres) | |||||
| matrix_bot_postmoogle_database_engine: "{{ 'postgres' if matrix_postgres_enabled else 'sqlite' }}" | |||||
| matrix_bot_postmoogle_database_password: "{{ '%s' | format(matrix_homeserver_generic_secret_key) | password_hash('sha512', 'postmoogle.db') | to_uuid }}" | |||||
| matrix_bot_postmoogle_container_image_self_build: "{{ matrix_architecture not in ['amd64', 'arm32', 'arm64'] }}" | |||||
| ###################################################################### | |||||
| # | |||||
| # /matrix-bot-postmoogle | |||||
| # | |||||
| ###################################################################### | |||||
| ###################################################################### | ###################################################################### | ||||
| # | # | ||||
| @@ -1862,6 +1892,12 @@ matrix_postgres_additional_databases: | | |||||
| 'password': matrix_bot_honoroit_database_password, | 'password': matrix_bot_honoroit_database_password, | ||||
| }] if (matrix_bot_honoroit_enabled and matrix_bot_honoroit_database_engine == 'postgres' and matrix_bot_honoroit_database_hostname == 'matrix-postgres') else []) | }] if (matrix_bot_honoroit_enabled and matrix_bot_honoroit_database_engine == 'postgres' and matrix_bot_honoroit_database_hostname == 'matrix-postgres') else []) | ||||
| + | + | ||||
| ([{ | |||||
| 'name': matrix_bot_postmoogle_database_name, | |||||
| 'username': matrix_bot_postmoogle_database_username, | |||||
| 'password': matrix_bot_postmoogle_database_password, | |||||
| }] if (matrix_bot_postmoogle_enabled and matrix_bot_postmoogle_database_engine == 'postgres' and matrix_bot_postmoogle_database_hostname == 'matrix-postgres') else []) | |||||
| + | |||||
| ([{ | ([{ | ||||
| 'name': matrix_bot_maubot_database_name, | 'name': matrix_bot_maubot_database_name, | ||||
| 'username': matrix_bot_maubot_database_username, | 'username': matrix_bot_maubot_database_username, | ||||
| @@ -2295,6 +2331,9 @@ matrix_synapse_redis_enabled: "{{ matrix_redis_enabled }}" | |||||
| matrix_synapse_redis_host: "{{ 'matrix-redis' if matrix_redis_enabled else '' }}" | matrix_synapse_redis_host: "{{ 'matrix-redis' if matrix_redis_enabled else '' }}" | ||||
| matrix_synapse_redis_password: "{{ matrix_redis_connection_password if matrix_redis_enabled else '' }}" | matrix_synapse_redis_password: "{{ matrix_redis_connection_password if matrix_redis_enabled else '' }}" | ||||
| matrix_synapse_container_runtime_injected_arguments: "{{ matrix_homeserver_container_runtime_injected_arguments }}" | |||||
| matrix_synapse_app_service_runtime_injected_config_files: "{{ matrix_homeserver_app_service_runtime_injected_config_files }}" | |||||
| ###################################################################### | ###################################################################### | ||||
| # | # | ||||
| # /matrix-synapse | # /matrix-synapse | ||||
| @@ -2560,6 +2599,9 @@ matrix_dendrite_systemd_wanted_services_list: | | |||||
| (['matrix-coturn.service'] if matrix_coturn_enabled else []) | (['matrix-coturn.service'] if matrix_coturn_enabled else []) | ||||
| }} | }} | ||||
| matrix_dendrite_container_runtime_injected_arguments: "{{ matrix_homeserver_container_runtime_injected_arguments }}" | |||||
| matrix_dendrite_app_service_runtime_injected_config_files: "{{ matrix_homeserver_app_service_runtime_injected_config_files }}" | |||||
| ###################################################################### | ###################################################################### | ||||
| # | # | ||||
| # /matrix-dendrite | # /matrix-dendrite | ||||
| @@ -2,3 +2,6 @@ | |||||
| # This will contain a list of enabled services that the playbook is managing. | # This will contain a list of enabled services that the playbook is managing. | ||||
| # Each component is expected to append its service name to this list. | # Each component is expected to append its service name to this list. | ||||
| matrix_systemd_services_list: [] | matrix_systemd_services_list: [] | ||||
| matrix_homeserver_container_runtime_injected_arguments: [] | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: [] | |||||
| @@ -9,7 +9,7 @@ matrix_bot_buscarron_docker_repo: "https://gitlab.com/etke.cc/buscarron.git" | |||||
| matrix_bot_buscarron_docker_repo_version: "{{ matrix_bot_buscarron_version }}" | matrix_bot_buscarron_docker_repo_version: "{{ matrix_bot_buscarron_version }}" | ||||
| matrix_bot_buscarron_docker_src_files_path: "{{ matrix_base_data_path }}/buscarron/docker-src" | matrix_bot_buscarron_docker_src_files_path: "{{ matrix_base_data_path }}/buscarron/docker-src" | ||||
| matrix_bot_buscarron_version: v1.2.0 | |||||
| matrix_bot_buscarron_version: v1.2.1 | |||||
| matrix_bot_buscarron_docker_image: "{{ matrix_bot_buscarron_docker_image_name_prefix }}buscarron:{{ matrix_bot_buscarron_version }}" | matrix_bot_buscarron_docker_image: "{{ matrix_bot_buscarron_docker_image_name_prefix }}buscarron:{{ matrix_bot_buscarron_version }}" | ||||
| matrix_bot_buscarron_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_buscarron_container_image_self_build else 'registry.gitlab.com/etke.cc/' }}" | matrix_bot_buscarron_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_buscarron_container_image_self_build else 'registry.gitlab.com/etke.cc/' }}" | ||||
| matrix_bot_buscarron_docker_image_force_pull: "{{ matrix_bot_buscarron_docker_image.endswith(':latest') }}" | matrix_bot_buscarron_docker_image_force_pull: "{{ matrix_bot_buscarron_docker_image.endswith(':latest') }}" | ||||
| @@ -9,7 +9,7 @@ matrix_bot_honoroit_docker_repo: "https://gitlab.com/etke.cc/honoroit.git" | |||||
| matrix_bot_honoroit_docker_repo_version: "{{ matrix_bot_honoroit_version }}" | matrix_bot_honoroit_docker_repo_version: "{{ matrix_bot_honoroit_version }}" | ||||
| matrix_bot_honoroit_docker_src_files_path: "{{ matrix_base_data_path }}/honoroit/docker-src" | matrix_bot_honoroit_docker_src_files_path: "{{ matrix_base_data_path }}/honoroit/docker-src" | ||||
| matrix_bot_honoroit_version: v0.9.12 | |||||
| matrix_bot_honoroit_version: v0.9.13 | |||||
| matrix_bot_honoroit_docker_image: "{{ matrix_bot_honoroit_docker_image_name_prefix }}honoroit:{{ matrix_bot_honoroit_version }}" | matrix_bot_honoroit_docker_image: "{{ matrix_bot_honoroit_docker_image_name_prefix }}honoroit:{{ matrix_bot_honoroit_version }}" | ||||
| matrix_bot_honoroit_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_honoroit_container_image_self_build else 'registry.gitlab.com/etke.cc/' }}" | matrix_bot_honoroit_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_honoroit_container_image_self_build else 'registry.gitlab.com/etke.cc/' }}" | ||||
| matrix_bot_honoroit_docker_image_force_pull: "{{ matrix_bot_honoroit_docker_image.endswith(':latest') }}" | matrix_bot_honoroit_docker_image_force_pull: "{{ matrix_bot_honoroit_docker_image.endswith(':latest') }}" | ||||
| @@ -0,0 +1,109 @@ | |||||
| --- | |||||
| # postmoogle is an email to matrix bot | |||||
| # Project source code URL: https://gitlab.com/etke.cc/postmoogle | |||||
| matrix_bot_postmoogle_enabled: true | |||||
| matrix_bot_postmoogle_container_image_self_build: false | |||||
| matrix_bot_postmoogle_docker_repo: "https://gitlab.com/etke.cc/postmoogle.git" | |||||
| matrix_bot_postmoogle_docker_repo_version: "{{ 'main' if matrix_bot_postmoogle_version == 'latest' else matrix_bot_postmoogle_version }}" | |||||
| matrix_bot_postmoogle_docker_src_files_path: "{{ matrix_base_data_path }}/postmoogle/docker-src" | |||||
| matrix_bot_postmoogle_version: latest | |||||
| matrix_bot_postmoogle_docker_image: "{{ matrix_bot_postmoogle_docker_image_name_prefix }}postmoogle:{{ matrix_bot_postmoogle_version }}" | |||||
| matrix_bot_postmoogle_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_postmoogle_container_image_self_build else 'registry.gitlab.com/etke.cc/' }}" | |||||
| matrix_bot_postmoogle_docker_image_force_pull: "{{ matrix_bot_postmoogle_docker_image.endswith(':latest') }}" | |||||
| matrix_bot_postmoogle_base_path: "{{ matrix_base_data_path }}/postmoogle" | |||||
| matrix_bot_postmoogle_config_path: "{{ matrix_bot_postmoogle_base_path }}/config" | |||||
| matrix_bot_postmoogle_data_path: "{{ matrix_bot_postmoogle_base_path }}/data" | |||||
| # A list of extra arguments to pass to the container | |||||
| matrix_bot_postmoogle_container_extra_arguments: [] | |||||
| # List of systemd services that matrix-bot-postmoogle.service depends on | |||||
| matrix_bot_postmoogle_systemd_required_services_list: ['docker.service'] | |||||
| # List of systemd services that matrix-bot-postmoogle.service wants | |||||
| matrix_bot_postmoogle_systemd_wanted_services_list: [] | |||||
| # Database-related configuration fields. | |||||
| # | |||||
| # To use SQLite, stick to these defaults. | |||||
| # | |||||
| # To use Postgres: | |||||
| # - change the engine (`matrix_bot_postmoogle_database_engine: 'postgres'`) | |||||
| # - adjust your database credentials via the `matrix_bot_postmoogle_database_*` variables | |||||
| matrix_bot_postmoogle_database_engine: 'sqlite' | |||||
| matrix_bot_postmoogle_sqlite_database_path_local: "{{ matrix_bot_postmoogle_data_path }}/bot.db" | |||||
| matrix_bot_postmoogle_sqlite_database_path_in_container: "/data/bot.db" | |||||
| matrix_bot_postmoogle_database_username: 'postmoogle' | |||||
| matrix_bot_postmoogle_database_password: 'some-password' | |||||
| matrix_bot_postmoogle_database_hostname: 'matrix-postgres' | |||||
| matrix_bot_postmoogle_database_port: 5432 | |||||
| matrix_bot_postmoogle_database_name: 'postmoogle' | |||||
| matrix_bot_postmoogle_database_connection_string: 'postgres://{{ matrix_bot_postmoogle_database_username }}:{{ matrix_bot_postmoogle_database_password }}@{{ matrix_bot_postmoogle_database_hostname }}:{{ matrix_bot_postmoogle_database_port }}/{{ matrix_bot_postmoogle_database_name }}?sslmode=disable' | |||||
| matrix_bot_postmoogle_storage_database: "{{ | |||||
| { | |||||
| 'sqlite': matrix_bot_postmoogle_sqlite_database_path_in_container, | |||||
| 'postgres': matrix_bot_postmoogle_database_connection_string, | |||||
| }[matrix_bot_postmoogle_database_engine] | |||||
| }}" | |||||
| matrix_bot_postmoogle_database_dialect: "{{ | |||||
| { | |||||
| 'sqlite': 'sqlite3', | |||||
| 'postgres': 'postgres', | |||||
| }[matrix_bot_postmoogle_database_engine] | |||||
| }}" | |||||
| # The bot's username. This user needs to be created manually beforehand. | |||||
| # Also see `matrix_bot_postmoogle_password`. | |||||
| matrix_bot_postmoogle_login: "postmoogle" | |||||
| # The password that the bot uses to authenticate. | |||||
| matrix_bot_postmoogle_password: '' | |||||
| matrix_bot_postmoogle_homeserver: "{{ matrix_homeserver_container_url }}" | |||||
| # Command prefix | |||||
| matrix_bot_postmoogle_prefix: '!pm' | |||||
| # Max email size in megabytes, including attachments | |||||
| matrix_bot_postmoogle_maxsize: '1024' | |||||
| # Allow room settings changes by any room participant | |||||
| matrix_bot_postmoogle_noowner: false | |||||
| # Allow Postmoogle use by users over federation | |||||
| matrix_bot_postmoogle_federation: false | |||||
| # Sentry DSN | |||||
| matrix_bot_postmoogle_sentry: '' | |||||
| # Log level | |||||
| matrix_bot_postmoogle_loglevel: 'INFO' | |||||
| # Disable encryption | |||||
| matrix_bot_postmoogle_noencryption: false | |||||
| matrix_bot_postmoogle_domain: "{{ matrix_server_fqn_matrix }}" | |||||
| # in-container port | |||||
| matrix_bot_postmoogle_port: '2525' | |||||
| # on-host port | |||||
| matrix_bot_postmoogle_smtp_host_bind_port: '25' | |||||
| # Additional environment variables to pass to the postmoogle container | |||||
| # | |||||
| # Example: | |||||
| # matrix_bot_postmoogle_environment_variables_extension: | | |||||
| # postmoogle_TEXT_DONE=Done | |||||
| matrix_bot_postmoogle_environment_variables_extension: '' | |||||
| @@ -0,0 +1,5 @@ | |||||
| --- | |||||
| - ansible.builtin.set_fact: | |||||
| matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-bot-postmoogle.service'] }}" | |||||
| when: matrix_bot_postmoogle_enabled | bool | |||||
| @@ -0,0 +1,23 @@ | |||||
| --- | |||||
| - ansible.builtin.import_tasks: "{{ role_path }}/tasks/init.yml" | |||||
| tags: | |||||
| - always | |||||
| - ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml" | |||||
| when: "run_setup | bool and matrix_bot_postmoogle_enabled | bool" | |||||
| tags: | |||||
| - setup-all | |||||
| - setup-bot-postmoogle | |||||
| - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_install.yml" | |||||
| when: "run_setup | bool and matrix_bot_postmoogle_enabled | bool" | |||||
| tags: | |||||
| - setup-all | |||||
| - setup-bot-postmoogle | |||||
| - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml" | |||||
| when: "run_setup | bool and not matrix_bot_postmoogle_enabled | bool" | |||||
| tags: | |||||
| - setup-all | |||||
| - setup-bot-postmoogle | |||||
| @@ -0,0 +1,99 @@ | |||||
| --- | |||||
| - block: | |||||
| - name: Check if an SQLite database already exists | |||||
| ansible.builtin.stat: | |||||
| path: "{{ matrix_bot_postmoogle_sqlite_database_path_local }}" | |||||
| register: matrix_bot_postmoogle_sqlite_database_path_local_stat_result | |||||
| - block: | |||||
| - ansible.builtin.set_fact: | |||||
| matrix_postgres_db_migration_request: | |||||
| src: "{{ matrix_bot_postmoogle_sqlite_database_path_local }}" | |||||
| dst: "{{ matrix_bot_postmoogle_database_connection_string }}" | |||||
| caller: "{{ role_path | basename }}" | |||||
| engine_variable_name: 'matrix_bot_postmoogle_database_engine' | |||||
| engine_old: 'sqlite' | |||||
| systemd_services_to_stop: ['matrix-bot-postmoogle.service'] | |||||
| - ansible.builtin.import_role: | |||||
| name: matrix-postgres | |||||
| tasks_from: migrate_db_to_postgres | |||||
| - ansible.builtin.set_fact: | |||||
| matrix_bot_postmoogle_requires_restart: true | |||||
| when: "matrix_bot_postmoogle_sqlite_database_path_local_stat_result.stat.exists | bool" | |||||
| when: "matrix_bot_postmoogle_database_engine == 'postgres'" | |||||
| - name: Ensure postmoogle paths exist | |||||
| ansible.builtin.file: | |||||
| path: "{{ item.path }}" | |||||
| state: directory | |||||
| mode: 0750 | |||||
| owner: "{{ matrix_user_username }}" | |||||
| group: "{{ matrix_user_groupname }}" | |||||
| with_items: | |||||
| - {path: "{{ matrix_bot_postmoogle_config_path }}", when: true} | |||||
| - {path: "{{ matrix_bot_postmoogle_data_path }}", when: true} | |||||
| - {path: "{{ matrix_bot_postmoogle_docker_src_files_path }}", when: matrix_bot_postmoogle_container_image_self_build} | |||||
| when: "item.when | bool" | |||||
| - name: Ensure postmoogle environment variables file created | |||||
| ansible.builtin.template: | |||||
| src: "{{ role_path }}/templates/env.j2" | |||||
| dest: "{{ matrix_bot_postmoogle_config_path }}/env" | |||||
| owner: "{{ matrix_user_username }}" | |||||
| group: "{{ matrix_user_groupname }}" | |||||
| mode: 0640 | |||||
| - name: Ensure postmoogle image is pulled | |||||
| docker_image: | |||||
| name: "{{ matrix_bot_postmoogle_docker_image }}" | |||||
| source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}" | |||||
| force_source: "{{ matrix_bot_postmoogle_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}" | |||||
| force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_bot_postmoogle_docker_image_force_pull }}" | |||||
| when: "not matrix_bot_postmoogle_container_image_self_build | bool" | |||||
| register: result | |||||
| retries: "{{ matrix_container_retries_count }}" | |||||
| delay: "{{ matrix_container_retries_delay }}" | |||||
| until: result is not failed | |||||
| - name: Ensure postmoogle repository is present on self-build | |||||
| ansible.builtin.git: | |||||
| repo: "{{ matrix_bot_postmoogle_docker_repo }}" | |||||
| version: "{{ matrix_bot_postmoogle_docker_repo_version }}" | |||||
| dest: "{{ matrix_bot_postmoogle_docker_src_files_path }}" | |||||
| force: "yes" | |||||
| become: true | |||||
| become_user: "{{ matrix_user_username }}" | |||||
| register: matrix_bot_postmoogle_git_pull_results | |||||
| when: "matrix_bot_postmoogle_container_image_self_build | bool" | |||||
| - name: Ensure postmoogle image is built | |||||
| docker_image: | |||||
| name: "{{ matrix_bot_postmoogle_docker_image }}" | |||||
| source: build | |||||
| force_source: "{{ matrix_bot_postmoogle_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}" | |||||
| force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mailer_git_pull_results.changed }}" | |||||
| build: | |||||
| dockerfile: Dockerfile | |||||
| path: "{{ matrix_bot_postmoogle_docker_src_files_path }}" | |||||
| pull: true | |||||
| when: "matrix_bot_postmoogle_container_image_self_build | bool" | |||||
| - name: Ensure matrix-bot-postmoogle.service installed | |||||
| ansible.builtin.template: | |||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-postmoogle.service.j2" | |||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| mode: 0644 | |||||
| register: matrix_bot_postmoogle_systemd_service_result | |||||
| - name: Ensure systemd reloaded after matrix-bot-postmoogle.service installation | |||||
| ansible.builtin.service: | |||||
| daemon_reload: true | |||||
| when: "matrix_bot_postmoogle_systemd_service_result.changed | bool" | |||||
| - name: Ensure matrix-bot-postmoogle.service restarted, if necessary | |||||
| ansible.builtin.service: | |||||
| name: "matrix-bot-postmoogle.service" | |||||
| state: restarted | |||||
| when: "matrix_bot_postmoogle_systemd_service_result.changed | bool" | |||||
| @@ -0,0 +1,36 @@ | |||||
| --- | |||||
| - name: Check existence of matrix-postmoogle service | |||||
| ansible.builtin.stat: | |||||
| path: "{{ matrix_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| register: matrix_bot_postmoogle_service_stat | |||||
| - name: Ensure matrix-postmoogle is stopped | |||||
| ansible.builtin.service: | |||||
| name: matrix-bot-postmoogle | |||||
| state: stopped | |||||
| enabled: false | |||||
| daemon_reload: true | |||||
| register: stopping_result | |||||
| when: "matrix_bot_postmoogle_service_stat.stat.exists | bool" | |||||
| - name: Ensure matrix-bot-postmoogle.service doesn't exist | |||||
| ansible.builtin.file: | |||||
| path: "{{ matrix_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| state: absent | |||||
| when: "matrix_bot_postmoogle_service_stat.stat.exists | bool" | |||||
| - name: Ensure systemd reloaded after matrix-bot-postmoogle.service removal | |||||
| ansible.builtin.service: | |||||
| daemon_reload: true | |||||
| when: "matrix_bot_postmoogle_service_stat.stat.exists | bool" | |||||
| - name: Ensure Matrix postmoogle paths don't exist | |||||
| ansible.builtin.file: | |||||
| path: "{{ matrix_bot_postmoogle_base_path }}" | |||||
| state: absent | |||||
| - name: Ensure postmoogle Docker image doesn't exist | |||||
| docker_image: | |||||
| name: "{{ matrix_bot_postmoogle_docker_image }}" | |||||
| state: absent | |||||
| @@ -0,0 +1,9 @@ | |||||
| --- | |||||
| - name: Fail if required settings not defined | |||||
| ansible.builtin.fail: | |||||
| msg: >- | |||||
| You need to define a required configuration setting (`{{ item }}`). | |||||
| when: "vars[item] == ''" | |||||
| with_items: | |||||
| - "matrix_bot_postmoogle_password" | |||||
| @@ -0,0 +1,16 @@ | |||||
| POSTMOOGLE_LOGIN={{ matrix_bot_postmoogle_login }} | |||||
| POSTMOOGLE_PASSWORD={{ matrix_bot_postmoogle_password }} | |||||
| POSTMOOGLE_HOMESERVER={{ matrix_bot_postmoogle_homeserver }} | |||||
| POSTMOOGLE_DOMAIN={{ matrix_bot_postmoogle_domain }} | |||||
| POSTMOOGLE_PORT={{ matrix_bot_postmoogle_port }} | |||||
| POSTMOOGLE_DB_DSN={{ matrix_bot_postmoogle_database_connection_string }} | |||||
| POSTMOOGLE_DB_DIALECT={{ matrix_bot_postmoogle_database_dialect }} | |||||
| POSTMOOGLE_PREFIX={{ matrix_bot_postmoogle_prefix }} | |||||
| POSTMOOGLE_MAXSIZE={{ matrix_bot_postmoogle_maxsize }} | |||||
| POSTMOOGLE_SENTRY={{ matrix_bot_postmoogle_sentry }} | |||||
| POSTMOOGLE_LOGLEVEL={{ matrix_bot_postmoogle_loglevel }} | |||||
| POSTMOOGLE_NOENCRYPTION={{ matrix_bot_postmoogle_noencryption }} | |||||
| POSTMOOGLE_NOOWNER={{ matrix_bot_postmoogle_noowner }} | |||||
| POSTMOOGLE_FEDERATION={{ matrix_bot_postmoogle_federation }} | |||||
| {{ matrix_bot_postmoogle_environment_variables_extension }} | |||||
| @@ -0,0 +1,40 @@ | |||||
| #jinja2: lstrip_blocks: "True" | |||||
| [Unit] | |||||
| Description=Matrix helpdesk bot | |||||
| {% for service in matrix_bot_postmoogle_systemd_required_services_list %} | |||||
| Requires={{ service }} | |||||
| After={{ service }} | |||||
| {% endfor %} | |||||
| {% for service in matrix_bot_postmoogle_systemd_wanted_services_list %} | |||||
| Wants={{ service }} | |||||
| {% endfor %} | |||||
| DefaultDependencies=no | |||||
| [Service] | |||||
| Type=simple | |||||
| Environment="HOME={{ matrix_systemd_unit_home_path }}" | |||||
| ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-bot-postmoogle 2>/dev/null || true' | |||||
| ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-postmoogle 2>/dev/null || true' | |||||
| ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-bot-postmoogle \ | |||||
| --log-driver=none \ | |||||
| --user={{ matrix_user_uid }}:{{ matrix_user_gid }} \ | |||||
| --cap-drop=ALL \ | |||||
| --read-only \ | |||||
| --network={{ matrix_docker_network }} \ | |||||
| --env-file={{ matrix_bot_postmoogle_config_path }}/env \ | |||||
| -p {{ matrix_bot_postmoogle_smtp_host_bind_port }}:{{ matrix_bot_postmoogle_port }} \ | |||||
| --mount type=bind,src={{ matrix_bot_postmoogle_data_path }},dst=/data \ | |||||
| {% for arg in matrix_bot_postmoogle_container_extra_arguments %} | |||||
| {{ arg }} \ | |||||
| {% endfor %} | |||||
| {{ matrix_bot_postmoogle_docker_image }} | |||||
| ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-bot-postmoogle 2>/dev/null || true' | |||||
| ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-postmoogle 2>/dev/null || true' | |||||
| Restart=always | |||||
| RestartSec=30 | |||||
| SyslogIdentifier=matrix-bot-postmoogle | |||||
| [Install] | |||||
| WantedBy=multi-user.target | |||||
| @@ -13,33 +13,18 @@ | |||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| # If the matrix-synapse role is not used, these variables may not exist. | |||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_appservice_discord_config_path }}/registration.yaml,dst=/matrix-appservice-discord-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_appservice_discord_config_path }}/registration.yaml,dst=/matrix-appservice-discord-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-appservice-discord-registration.yaml"] | ["/matrix-appservice-discord-registration.yaml"] | ||||
| }} | }} | ||||
| # If the matrix-dendrite role is not used, these variables may not exist. | |||||
| matrix_dendrite_container_extra_arguments: > | |||||
| {{ | |||||
| matrix_dendrite_container_extra_arguments | default([]) | |||||
| + | |||||
| ["--mount type=bind,src={{ matrix_appservice_discord_config_path }}/registration.yaml,dst=/matrix-appservice-discord-registration.yaml,ro"] | |||||
| }} | |||||
| matrix_dendrite_app_service_config_files: > | |||||
| {{ | |||||
| matrix_dendrite_app_service_config_files | default([]) | |||||
| + | |||||
| ["/matrix-appservice-discord-registration.yaml"] | |||||
| }} | |||||
| when: matrix_appservice_discord_enabled | bool | when: matrix_appservice_discord_enabled | bool | ||||
| @@ -20,16 +20,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_appservice_irc_config_path }}/registration.yaml,dst=/matrix-appservice-irc-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_appservice_irc_config_path }}/registration.yaml,dst=/matrix-appservice-irc-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-appservice-irc-registration.yaml"] | ["/matrix-appservice-irc-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_appservice_kakaotalk_config_path }}/registration.yaml,dst=/matrix-appservice-kakaotalk-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_appservice_kakaotalk_config_path }}/registration.yaml,dst=/matrix-appservice-kakaotalk-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-appservice-kakaotalk-registration.yaml"] | ["/matrix-appservice-kakaotalk-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -20,16 +20,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_appservice_slack_config_path }}/slack-registration.yaml,dst=/matrix-appservice-slack-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_appservice_slack_config_path }}/slack-registration.yaml,dst=/matrix-appservice-slack-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-appservice-slack-registration.yaml"] | ["/matrix-appservice-slack-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -13,16 +13,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_appservice_webhooks_config_path }}/webhooks-registration.yaml,dst=/matrix-appservice-webhooks-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_appservice_webhooks_config_path }}/webhooks-registration.yaml,dst=/matrix-appservice-webhooks-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-appservice-webhooks-registration.yaml"] | ["/matrix-appservice-webhooks-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -6,16 +6,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_beeper_linkedin_config_path }}/registration.yaml,dst=/matrix-beeper-linkedin-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_beeper_linkedin_config_path }}/registration.yaml,dst=/matrix-beeper-linkedin-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-beeper-linkedin-registration.yaml"] | ["/matrix-beeper-linkedin-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -5,16 +5,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_go_skype_bridge_config_path }}/registration.yaml,dst=/matrix-go-skype-bridge-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_go_skype_bridge_config_path }}/registration.yaml,dst=/matrix-go-skype-bridge-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-go-skype-bridge-registration.yaml"] | ["/matrix-go-skype-bridge-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -13,16 +13,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_heisenbridge_base_path }}/registration.yaml,dst=/heisenbridge-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_heisenbridge_base_path }}/registration.yaml,dst=/heisenbridge-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/heisenbridge-registration.yaml"] | ["/heisenbridge-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -13,16 +13,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_hookshot_base_path }}/registration.yml,dst=/hookshot-registration.yml,ro"] | ["--mount type=bind,src={{ matrix_hookshot_base_path }}/registration.yml,dst=/hookshot-registration.yml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/hookshot-registration.yml"] | ["/hookshot-registration.yml"] | ||||
| }} | }} | ||||
| @@ -5,16 +5,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_discord_config_path }}/registration.yaml,dst=/matrix-mautrix-discord-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_discord_config_path }}/registration.yaml,dst=/matrix-mautrix-discord-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-discord-registration.yaml"] | ["/matrix-mautrix-discord-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -11,31 +11,17 @@ | |||||
| when: matrix_mautrix_facebook_enabled | bool | when: matrix_mautrix_facebook_enabled | bool | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| # If the matrix-synapse role is not used, these variables may not exist. | |||||
| matrix_synapse_container_extra_arguments: > | |||||
| {{ | |||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| + | |||||
| ["--mount type=bind,src={{ matrix_mautrix_facebook_config_path }}/registration.yaml,dst=/matrix-mautrix-facebook-registration.yaml,ro"] | |||||
| }} | |||||
| matrix_synapse_app_service_config_files: > | |||||
| {{ | |||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| + | |||||
| ["/matrix-mautrix-facebook-registration.yaml"] | |||||
| }} | |||||
| # If the matrix-dendrite role is not used, these variables may not exist. | |||||
| matrix_dendrite_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_dendrite_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_facebook_config_path }}/registration.yaml,dst=/matrix-mautrix-facebook-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_facebook_config_path }}/registration.yaml,dst=/matrix-mautrix-facebook-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_dendrite_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_dendrite_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-facebook-registration.yaml"] | ["/matrix-mautrix-facebook-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_googlechat_config_path }}/registration.yaml,dst=/matrix-mautrix-googlechat-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_googlechat_config_path }}/registration.yaml,dst=/matrix-mautrix-googlechat-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-googlechat-registration.yaml"] | ["/matrix-mautrix-googlechat-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_hangouts_config_path }}/registration.yaml,dst=/matrix-mautrix-hangouts-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_hangouts_config_path }}/registration.yaml,dst=/matrix-mautrix-hangouts-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-hangouts-registration.yaml"] | ["/matrix-mautrix-hangouts-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_instagram_config_path }}/registration.yaml,dst=/matrix-mautrix-instagram-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_instagram_config_path }}/registration.yaml,dst=/matrix-mautrix-instagram-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-instagram-registration.yaml"] | ["/matrix-mautrix-instagram-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -6,16 +6,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_signal_config_path }}/registration.yaml,dst=/matrix-mautrix-signal-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_signal_config_path }}/registration.yaml,dst=/matrix-mautrix-signal-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-signal-registration.yaml"] | ["/matrix-mautrix-signal-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -156,3 +156,8 @@ matrix_mautrix_telegram_registration: "{{ matrix_mautrix_telegram_registration_y | |||||
| matrix_mautrix_telegram_username_template: 'telegram_{userid}' | matrix_mautrix_telegram_username_template: 'telegram_{userid}' | ||||
| matrix_mautrix_telegram_alias_template: 'telegram_{groupname}' | matrix_mautrix_telegram_alias_template: 'telegram_{groupname}' | ||||
| matrix_mautrix_telegram_displayname_template: '{displayname} (Telegram)' | matrix_mautrix_telegram_displayname_template: '{displayname} (Telegram)' | ||||
| # Enable End-to-bridge encryption | |||||
| matrix_mautrix_telegram_bridge_encryption_allow: false | |||||
| matrix_mautrix_telegram_bridge_encryption_default: "{{ matrix_mautrix_telegram_bridge_encryption_allow }}" | |||||
| matrix_mautrix_telegram_bridge_encryption_key_sharing_allow: "{{ matrix_mautrix_telegram_bridge_encryption_allow }}" | |||||
| @@ -11,35 +11,21 @@ | |||||
| when: matrix_mautrix_telegram_enabled | bool | when: matrix_mautrix_telegram_enabled | bool | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| # If the matrix-synapse role is not used, these variables may not exist. | |||||
| matrix_synapse_container_extra_arguments: > | |||||
| {{ | |||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| + | |||||
| ["--mount type=bind,src={{ matrix_mautrix_telegram_config_path }}/registration.yaml,dst=/matrix-mautrix-telegram-registration.yaml,ro"] | |||||
| }} | |||||
| matrix_synapse_app_service_config_files: > | |||||
| {{ | |||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| + | |||||
| ["/matrix-mautrix-telegram-registration.yaml"] | |||||
| }} | |||||
| # If the matrix-dendrite role is not used, these variables may not exist. | |||||
| matrix_dendrite_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_dendrite_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_telegram_config_path }}/registration.yaml,dst=/matrix-mautrix-telegram-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_telegram_config_path }}/registration.yaml,dst=/matrix-mautrix-telegram-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_dendrite_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_dendrite_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-telegram-registration.yaml"] | ["/matrix-mautrix-telegram-registration.yaml"] | ||||
| }} | }} | ||||
| when: matrix_mautrix_telegram_enabled | bool | when: matrix_mautrix_telegram_enabled | bool | ||||
| - block: | - block: | ||||
| @@ -176,27 +176,29 @@ bridge: | |||||
| height: 256 | height: 256 | ||||
| background: "020202" # only for gif | background: "020202" # only for gif | ||||
| fps: 30 # only for webm | fps: 30 # only for webm | ||||
| # End-to-bridge encryption support options. These require matrix-nio to be installed with pip | |||||
| # and login_shared_secret to be configured in order to get a device for the bridge bot. | |||||
| # End-to-bridge encryption support options. | |||||
| # | # | ||||
| # Additionally, https://github.com/matrix-org/synapse/pull/5758 is required if using a normal | |||||
| # application service. | |||||
| # See https://docs.mau.fi/bridges/general/end-to-bridge-encryption.html for more info. | |||||
| encryption: | encryption: | ||||
| # Allow encryption, work in group chat rooms with e2ee enabled | # Allow encryption, work in group chat rooms with e2ee enabled | ||||
| allow: false | |||||
| allow: {{ matrix_mautrix_telegram_bridge_encryption_allow|to_json }} | |||||
| # Default to encryption, force-enable encryption in all portals the bridge creates | # Default to encryption, force-enable encryption in all portals the bridge creates | ||||
| # This will cause the bridge bot to be in private chats for the encryption to work properly. | # This will cause the bridge bot to be in private chats for the encryption to work properly. | ||||
| default: false | |||||
| # Database for the encryption data. Currently only supports Postgres and an in-memory | |||||
| # store that's persisted as a pickle. | |||||
| # If set to `default`, will use the appservice postgres database | |||||
| # or a pickle file if the appservice database is sqlite. | |||||
| # | |||||
| # Format examples: | |||||
| # Pickle: pickle:///filename.pickle | |||||
| # Postgres: postgres://username:password@hostname/dbname | |||||
| default: {{ matrix_mautrix_telegram_bridge_encryption_default|to_json }} | |||||
| # Database for the encryption data. If set to `default`, will use the appservice database. | |||||
| database: default | database: default | ||||
| # Options for automatic key sharing. | |||||
| key_sharing: | |||||
| # Enable key sharing? If enabled, key requests for rooms where users are in will be fulfilled. | |||||
| # You must use a client that supports requesting keys from other users to use this feature. | |||||
| allow: {{ matrix_mautrix_telegram_bridge_encryption_key_sharing_allow|to_json }} | |||||
| # Require the requesting device to have a valid cross-signing signature? | |||||
| # This doesn't require that the bridge has verified the device, only that the user has verified it. | |||||
| # Not yet implemented. | |||||
| require_cross_signing: false | |||||
| # Require devices to be verified by the bridge? | |||||
| # Verification by the bridge is not yet implemented. | |||||
| require_verification: true | |||||
| # Whether or not to explicitly set the avatar and room name for private | # Whether or not to explicitly set the avatar and room name for private | ||||
| # chat portal rooms. This will be implicitly enabled if encryption.default is true. | # chat portal rooms. This will be implicitly enabled if encryption.default is true. | ||||
| private_chat_portal_meta: false | private_chat_portal_meta: false | ||||
| @@ -8,7 +8,7 @@ matrix_mautrix_twitter_container_image_self_build: false | |||||
| matrix_mautrix_twitter_container_image_self_build_repo: "https://github.com/mautrix/twitter.git" | matrix_mautrix_twitter_container_image_self_build_repo: "https://github.com/mautrix/twitter.git" | ||||
| matrix_mautrix_twitter_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_twitter_version == 'latest' else matrix_mautrix_twitter_version }}" | matrix_mautrix_twitter_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_twitter_version == 'latest' else matrix_mautrix_twitter_version }}" | ||||
| matrix_mautrix_twitter_version: v0.1.4 | |||||
| matrix_mautrix_twitter_version: v0.1.5 | |||||
| # See: https://mau.dev/tulir/mautrix-twitter/container_registry | # See: https://mau.dev/tulir/mautrix-twitter/container_registry | ||||
| matrix_mautrix_twitter_docker_image: "{{ matrix_mautrix_twitter_docker_image_name_prefix }}mautrix/twitter:{{ matrix_mautrix_twitter_version }}" | matrix_mautrix_twitter_docker_image: "{{ matrix_mautrix_twitter_docker_image_name_prefix }}mautrix/twitter:{{ matrix_mautrix_twitter_version }}" | ||||
| matrix_mautrix_twitter_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_twitter_container_image_self_build else 'dock.mau.dev/' }}" | matrix_mautrix_twitter_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_twitter_container_image_self_build else 'dock.mau.dev/' }}" | ||||
| @@ -6,16 +6,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_twitter_config_path }}/registration.yaml,dst=/matrix-mautrix-twitter-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_twitter_config_path }}/registration.yaml,dst=/matrix-mautrix-twitter-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-twitter-registration.yaml"] | ["/matrix-mautrix-twitter-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -4,33 +4,17 @@ | |||||
| when: matrix_mautrix_whatsapp_enabled | bool | when: matrix_mautrix_whatsapp_enabled | bool | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| # If the matrix-synapse role is not used, these variables may not exist. | |||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mautrix_whatsapp_config_path }}/registration.yaml,dst=/matrix-mautrix-whatsapp-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mautrix_whatsapp_config_path }}/registration.yaml,dst=/matrix-mautrix-whatsapp-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mautrix-whatsapp-registration.yaml"] | ["/matrix-mautrix-whatsapp-registration.yaml"] | ||||
| }} | }} | ||||
| # If the matrix-dendrite role is not used, these variables may not exist. | |||||
| matrix_dendrite_container_extra_arguments: > | |||||
| {{ | |||||
| matrix_dendrite_container_extra_arguments | default([]) | |||||
| + | |||||
| ["--mount type=bind,src={{ matrix_mautrix_whatsapp_config_path }}/registration.yaml,dst=/matrix-mautrix-whatsapp-registration.yaml,ro"] | |||||
| }} | |||||
| matrix_dendrite_app_service_config_files: > | |||||
| {{ | |||||
| matrix_dendrite_app_service_config_files | default([]) | |||||
| + | |||||
| ["/matrix-mautrix-whatsapp-registration.yaml"] | |||||
| }} | |||||
| when: matrix_mautrix_whatsapp_enabled | bool | when: matrix_mautrix_whatsapp_enabled | bool | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mx_puppet_discord_config_path }}/registration.yaml,dst=/matrix-mx-puppet-discord-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mx_puppet_discord_config_path }}/registration.yaml,dst=/matrix-mx-puppet-discord-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mx-puppet-discord-registration.yaml"] | ["/matrix-mx-puppet-discord-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mx_puppet_groupme_config_path }}/registration.yaml,dst=/matrix-mx-puppet-groupme-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mx_puppet_groupme_config_path }}/registration.yaml,dst=/matrix-mx-puppet-groupme-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mx-puppet-groupme-registration.yaml"] | ["/matrix-mx-puppet-groupme-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mx_puppet_instagram_config_path }}/registration.yaml,dst=/matrix-mx-puppet-instagram-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mx_puppet_instagram_config_path }}/registration.yaml,dst=/matrix-mx-puppet-instagram-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mx-puppet-instagram-registration.yaml"] | ["/matrix-mx-puppet-instagram-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mx_puppet_slack_config_path }}/registration.yaml,dst=/matrix-mx-puppet-slack-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mx_puppet_slack_config_path }}/registration.yaml,dst=/matrix-mx-puppet-slack-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mx-puppet-slack-registration.yaml"] | ["/matrix-mx-puppet-slack-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mx_puppet_steam_config_path }}/registration.yaml,dst=/matrix-mx-puppet-steam-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mx_puppet_steam_config_path }}/registration.yaml,dst=/matrix-mx-puppet-steam-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mx-puppet-steam-registration.yaml"] | ["/matrix-mx-puppet-steam-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -12,16 +12,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_mx_puppet_twitter_config_path }}/registration.yaml,dst=/matrix-mx-puppet-twitter-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_mx_puppet_twitter_config_path }}/registration.yaml,dst=/matrix-mx-puppet-twitter-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-mx-puppet-twitter-registration.yaml"] | ["/matrix-mx-puppet-twitter-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -14,16 +14,16 @@ | |||||
| # If the matrix-synapse role is not used, these variables may not exist. | # If the matrix-synapse role is not used, these variables may not exist. | ||||
| - ansible.builtin.set_fact: | - ansible.builtin.set_fact: | ||||
| matrix_synapse_container_extra_arguments: > | |||||
| matrix_homeserver_container_runtime_injected_arguments: > | |||||
| {{ | {{ | ||||
| matrix_synapse_container_extra_arguments | default([]) | |||||
| matrix_homeserver_container_runtime_injected_arguments | default([]) | |||||
| + | + | ||||
| ["--mount type=bind,src={{ matrix_sms_bridge_config_path }}/registration.yaml,dst=/matrix-sms-bridge-registration.yaml,ro"] | ["--mount type=bind,src={{ matrix_sms_bridge_config_path }}/registration.yaml,dst=/matrix-sms-bridge-registration.yaml,ro"] | ||||
| }} | }} | ||||
| matrix_synapse_app_service_config_files: > | |||||
| matrix_homeserver_app_service_runtime_injected_config_files: > | |||||
| {{ | {{ | ||||
| matrix_synapse_app_service_config_files | default([]) | |||||
| matrix_homeserver_app_service_runtime_injected_config_files | default([]) | |||||
| + | + | ||||
| ["/matrix-sms-bridge-registration.yaml"] | ["/matrix-sms-bridge-registration.yaml"] | ||||
| }} | }} | ||||
| @@ -45,7 +45,7 @@ | |||||
| line: '\1splitChunks: { maxSize: 100000,' | line: '\1splitChunks: { maxSize: 100000,' | ||||
| backrefs: true | backrefs: true | ||||
| owner: root | owner: root | ||||
| ansible.builtin.group: root | |||||
| group: root | |||||
| mode: '0644' | mode: '0644' | ||||
| when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool" | when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool" | ||||
| @@ -6,7 +6,7 @@ matrix_dendrite_enabled: true | |||||
| matrix_dendrite_docker_image: "{{ matrix_dendrite_docker_image_name_prefix }}matrixdotorg/dendrite-monolith:{{ matrix_dendrite_docker_image_tag }}" | matrix_dendrite_docker_image: "{{ matrix_dendrite_docker_image_name_prefix }}matrixdotorg/dendrite-monolith:{{ matrix_dendrite_docker_image_tag }}" | ||||
| matrix_dendrite_docker_image_name_prefix: "docker.io/" | matrix_dendrite_docker_image_name_prefix: "docker.io/" | ||||
| matrix_dendrite_docker_image_tag: "v0.9.4" | |||||
| matrix_dendrite_docker_image_tag: "v0.9.5" | |||||
| matrix_dendrite_docker_image_force_pull: "{{ matrix_dendrite_docker_image.endswith(':latest') }}" | matrix_dendrite_docker_image_force_pull: "{{ matrix_dendrite_docker_image.endswith(':latest') }}" | ||||
| matrix_dendrite_base_path: "{{ matrix_base_data_path }}/dendrite" | matrix_dendrite_base_path: "{{ matrix_base_data_path }}/dendrite" | ||||
| @@ -43,8 +43,19 @@ matrix_dendrite_container_http_host_bind_address: "" | |||||
| matrix_dendrite_container_https_host_bind_address: "" | matrix_dendrite_container_https_host_bind_address: "" | ||||
| # A list of extra arguments to pass to the container (`docker run` command) | # A list of extra arguments to pass to the container (`docker run` command) | ||||
| # Also see `matrix_dendrite_container_arguments` | |||||
| matrix_dendrite_container_extra_arguments: [] | matrix_dendrite_container_extra_arguments: [] | ||||
| # matrix_dendrite_container_runtime_injected_arguments is a list of extra arguments to pass to the container. | |||||
| # This list is built during runtime. You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_dendrite_container_extra_arguments`. | |||||
| matrix_dendrite_container_runtime_injected_arguments: [] | |||||
| # matrix_dendrite_container_arguments holds the final list of extra arguments to pass to the container. | |||||
| # You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_dendrite_container_extra_arguments`. | |||||
| matrix_dendrite_container_arguments: "{{ matrix_dendrite_container_extra_arguments + matrix_dendrite_container_runtime_injected_arguments }}" | |||||
| # A list of extra arguments to pass to the container process (`dendrite-monolith` command) | # A list of extra arguments to pass to the container process (`dendrite-monolith` command) | ||||
| # Example: | # Example: | ||||
| # matrix_dendrite_process_extra_arguments: | # matrix_dendrite_process_extra_arguments: | ||||
| @@ -83,7 +94,7 @@ matrix_dendrite_rate_limiting_threshold: 5 | |||||
| matrix_dendrite_rate_limiting_cooloff_ms: 500 | matrix_dendrite_rate_limiting_cooloff_ms: 500 | ||||
| # Controls whether people with access to the homeserver can register by themselves. | # Controls whether people with access to the homeserver can register by themselves. | ||||
| matrix_dendrite_registration_disabled: false | |||||
| matrix_dendrite_registration_disabled: true | |||||
| # reCAPTCHA API for validating registration attempts | # reCAPTCHA API for validating registration attempts | ||||
| matrix_dendrite_enable_registration_captcha: false | matrix_dendrite_enable_registration_captcha: false | ||||
| @@ -104,8 +115,19 @@ matrix_dendrite_container_additional_volumes: [] | |||||
| # A list of appservice config files (in-container filesystem paths). | # A list of appservice config files (in-container filesystem paths). | ||||
| # This list gets populated dynamically based on Dendrite extensions that have been enabled. | # This list gets populated dynamically based on Dendrite extensions that have been enabled. | ||||
| # You may wish to use this together with `matrix_dendrite_container_additional_volumes` or `matrix_dendrite_container_extra_arguments`. | # You may wish to use this together with `matrix_dendrite_container_additional_volumes` or `matrix_dendrite_container_extra_arguments`. | ||||
| # Also see `matrix_dendrite_app_service_config_files_final` | |||||
| matrix_dendrite_app_service_config_files: [] | matrix_dendrite_app_service_config_files: [] | ||||
| # matrix_dendrite_app_service_runtime_injected_config_files is a list of appservice config files. | |||||
| # This list is built during runtime. You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_dendrite_app_service_config_files`. | |||||
| matrix_dendrite_app_service_runtime_injected_config_files: [] | |||||
| # matrix_dendrite_app_service_config_files_final holds the final list of config files to pass to the container. | |||||
| # You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_dendrite_app_service_config_files`. | |||||
| matrix_dendrite_app_service_config_files_final: "{{ matrix_dendrite_app_service_config_files + matrix_dendrite_app_service_runtime_injected_config_files }}" | |||||
| # Enable exposure of metrics | # Enable exposure of metrics | ||||
| matrix_dendrite_metrics_enabled: false | matrix_dendrite_metrics_enabled: false | ||||
| matrix_dendrite_metrics_username: "metrics" | matrix_dendrite_metrics_username: "metrics" | ||||
| @@ -145,7 +145,7 @@ app_service_api: | |||||
| disable_tls_validation: {{ matrix_dendrite_disable_tls_validation|to_json }} | disable_tls_validation: {{ matrix_dendrite_disable_tls_validation|to_json }} | ||||
| # Appservice configuration files to load into this homeserver. | # Appservice configuration files to load into this homeserver. | ||||
| config_files: {{ matrix_dendrite_app_service_config_files|to_json }} | |||||
| config_files: {{ matrix_dendrite_app_service_config_files_final|to_json }} | |||||
| # Configuration for the Client API. | # Configuration for the Client API. | ||||
| client_api: | client_api: | ||||
| @@ -41,7 +41,7 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-dendrite \ | |||||
| {% for volume in matrix_dendrite_container_additional_volumes %} | {% for volume in matrix_dendrite_container_additional_volumes %} | ||||
| -v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \ | -v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \ | ||||
| {% endfor %} | {% endfor %} | ||||
| {% for arg in matrix_dendrite_container_extra_arguments %} | |||||
| {% for arg in matrix_dendrite_container_arguments %} | |||||
| {{ arg }} \ | {{ arg }} \ | ||||
| {% endfor %} | {% endfor %} | ||||
| {{ matrix_dendrite_docker_image }} \ | {{ matrix_dendrite_docker_image }} \ | ||||
| @@ -2,11 +2,16 @@ | |||||
| #!/bin/bash | #!/bin/bash | ||||
| if [ $# -ne 2 ]; then | if [ $# -ne 2 ]; then | ||||
| echo "Usage: "$0" <username> <password>" | |||||
| echo "Usage: "$0" <username> <password> <admin access: 0 or 1>" | |||||
| exit 1 | exit 1 | ||||
| fi | fi | ||||
| user=$1 | user=$1 | ||||
| password=$2 | password=$2 | ||||
| admin=$3 | |||||
| docker exec matrix-dendrite create-account -config /data/dendrite.yaml -username "$user" -password "$password" | |||||
| if [ "$admin" -eq "1" ]; then | |||||
| docker exec matrix-dendrite create-account -config /data/dendrite.yaml -username "$user" -password "$password" -admin -url http://localhost:{{ matrix_dendrite_http_bind_port }} | |||||
| else | |||||
| docker exec matrix-dendrite create-account -config /data/dendrite.yaml -username "$user" -password "$password" -url http://localhost:{{ matrix_dendrite_http_bind_port }} | |||||
| fi | |||||
| @@ -5,7 +5,7 @@ | |||||
| matrix_grafana_enabled: false | matrix_grafana_enabled: false | ||||
| matrix_grafana_version: 9.1.0 | |||||
| matrix_grafana_version: 9.1.1 | |||||
| matrix_grafana_docker_image: "{{ matrix_container_global_registry_prefix }}grafana/grafana:{{ matrix_grafana_version }}" | matrix_grafana_docker_image: "{{ matrix_container_global_registry_prefix }}grafana/grafana:{{ matrix_grafana_version }}" | ||||
| matrix_grafana_docker_image_force_pull: "{{ matrix_grafana_docker_image.endswith(':latest') }}" | matrix_grafana_docker_image_force_pull: "{{ matrix_grafana_docker_image.endswith(':latest') }}" | ||||
| @@ -9,6 +9,7 @@ matrix_jitsi_enable_auth: false | |||||
| matrix_jitsi_enable_guests: false | matrix_jitsi_enable_guests: false | ||||
| matrix_jitsi_enable_recording: false | matrix_jitsi_enable_recording: false | ||||
| matrix_jitsi_enable_transcriptions: false | matrix_jitsi_enable_transcriptions: false | ||||
| matrix_jitsi_enable_jaas_components: false | |||||
| matrix_jitsi_enable_p2p: true | matrix_jitsi_enable_p2p: true | ||||
| matrix_jitsi_enable_av_moderation: true | matrix_jitsi_enable_av_moderation: true | ||||
| matrix_jitsi_enable_breakout_rooms: true | matrix_jitsi_enable_breakout_rooms: true | ||||
| @@ -57,6 +57,7 @@ ENABLE_TALK_WHILE_MUTED | |||||
| ENABLE_TCC | ENABLE_TCC | ||||
| ENABLE_TRANSCRIPTIONS={{ 1 if matrix_jitsi_enable_transcriptions else 0 }} | ENABLE_TRANSCRIPTIONS={{ 1 if matrix_jitsi_enable_transcriptions else 0 }} | ||||
| ENABLE_XMPP_WEBSOCKET | ENABLE_XMPP_WEBSOCKET | ||||
| ENABLE_JAAS_COMPONENTS={{ 1 if matrix_jitsi_enable_jaas_components else false }} | |||||
| ETHERPAD_PUBLIC_URL | ETHERPAD_PUBLIC_URL | ||||
| ETHERPAD_URL_BASE={{ (matrix_jitsi_etherpad_base + '/') if matrix_jitsi_etherpad_enabled else ''}} | ETHERPAD_URL_BASE={{ (matrix_jitsi_etherpad_base + '/') if matrix_jitsi_etherpad_enabled else ''}} | ||||
| GOOGLE_ANALYTICS_ID | GOOGLE_ANALYTICS_ID | ||||
| @@ -61,8 +61,19 @@ matrix_synapse_container_metrics_api_host_bind_port: '' | |||||
| matrix_synapse_container_manhole_api_host_bind_port: '' | matrix_synapse_container_manhole_api_host_bind_port: '' | ||||
| # A list of extra arguments to pass to the container | # A list of extra arguments to pass to the container | ||||
| # Also see `matrix_synapse_container_arguments` | |||||
| matrix_synapse_container_extra_arguments: [] | matrix_synapse_container_extra_arguments: [] | ||||
| # matrix_synapse_container_runtime_injected_arguments is a list of extra arguments to pass to the container. | |||||
| # This list is built during runtime. You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_synapse_container_extra_arguments`. | |||||
| matrix_synapse_container_runtime_injected_arguments: [] | |||||
| # matrix_synapse_container_arguments holds the final list of extra arguments to pass to the container. | |||||
| # You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_synapse_container_extra_arguments`. | |||||
| matrix_synapse_container_arguments: "{{ matrix_synapse_container_extra_arguments + matrix_synapse_container_runtime_injected_arguments }}" | |||||
| # List of systemd services that matrix-synapse.service depends on | # List of systemd services that matrix-synapse.service depends on | ||||
| matrix_synapse_systemd_required_services_list: ['docker.service'] | matrix_synapse_systemd_required_services_list: ['docker.service'] | ||||
| @@ -324,8 +335,19 @@ matrix_synapse_additional_loggers: [] | |||||
| # A list of appservice config files (in-container filesystem paths). | # A list of appservice config files (in-container filesystem paths). | ||||
| # This list gets populated dynamically based on Synapse extensions that have been enabled. | # This list gets populated dynamically based on Synapse extensions that have been enabled. | ||||
| # You may wish to use this together with `matrix_synapse_container_additional_volumes` or `matrix_synapse_container_extra_arguments`. | # You may wish to use this together with `matrix_synapse_container_additional_volumes` or `matrix_synapse_container_extra_arguments`. | ||||
| # Also see `matrix_synapse_app_service_config_files_final` | |||||
| matrix_synapse_app_service_config_files: [] | matrix_synapse_app_service_config_files: [] | ||||
| # matrix_synapse_app_service_runtime_injected_config_files is a list of appservice config files. | |||||
| # This list is built during runtime. You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_synapse_app_service_config_files`. | |||||
| matrix_synapse_app_service_runtime_injected_config_files: [] | |||||
| # matrix_synapse_app_service_config_files_final holds the final list of config files to pass to the container. | |||||
| # You're not meant to override this variable. | |||||
| # If you'd like to inject your own arguments, see `matrix_synapse_app_service_config_files`. | |||||
| matrix_synapse_app_service_config_files_final: "{{ matrix_synapse_app_service_config_files + matrix_synapse_app_service_runtime_injected_config_files }}" | |||||
| # This is set dynamically during execution depending on whether | # This is set dynamically during execution depending on whether | ||||
| # any password providers have been enabled or not. | # any password providers have been enabled or not. | ||||
| matrix_synapse_password_providers_enabled: false | matrix_synapse_password_providers_enabled: false | ||||
| @@ -57,7 +57,7 @@ | |||||
| delete: true | delete: true | ||||
| # It's wasteful to preserve owner/group now. We chown below anyway. | # It's wasteful to preserve owner/group now. We chown below anyway. | ||||
| owner: false | owner: false | ||||
| ansible.builtin.group: false | |||||
| group: false | |||||
| times: true | times: true | ||||
| delegate_to: "{{ inventory_hostname }}" | delegate_to: "{{ inventory_hostname }}" | ||||
| @@ -1647,7 +1647,7 @@ room_prejoin_state: | |||||
| # A list of application service config files to use | # A list of application service config files to use | ||||
| # | # | ||||
| app_service_config_files: {{ matrix_synapse_app_service_config_files|to_json }} | |||||
| app_service_config_files: {{ matrix_synapse_app_service_config_files_final|to_json }} | |||||
| # Uncomment to enable tracking of application service IP addresses. Implicitly | # Uncomment to enable tracking of application service IP addresses. Implicitly | ||||
| # enables MAU tracking for application service users. | # enables MAU tracking for application service users. | ||||
| @@ -39,7 +39,7 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name {{ matrix_synapse_wor | |||||
| {% for volume in matrix_synapse_container_additional_volumes %} | {% for volume in matrix_synapse_container_additional_volumes %} | ||||
| -v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \ | -v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \ | ||||
| {% endfor %} | {% endfor %} | ||||
| {% for arg in matrix_synapse_container_extra_arguments %} | |||||
| {% for arg in matrix_synapse_container_arguments %} | |||||
| {{ arg }} \ | {{ arg }} \ | ||||
| {% endfor %} | {% endfor %} | ||||
| {{ matrix_synapse_docker_image }} \ | {{ matrix_synapse_docker_image }} \ | ||||
| @@ -57,7 +57,7 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-synapse \ | |||||
| {% for volume in matrix_synapse_container_additional_volumes %} | {% for volume in matrix_synapse_container_additional_volumes %} | ||||
| -v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \ | -v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \ | ||||
| {% endfor %} | {% endfor %} | ||||
| {% for arg in matrix_synapse_container_extra_arguments %} | |||||
| {% for arg in matrix_synapse_container_arguments %} | |||||
| {{ arg }} \ | {{ arg }} \ | ||||
| {% endfor %} | {% endfor %} | ||||
| {{ matrix_synapse_docker_image }} \ | {{ matrix_synapse_docker_image }} \ | ||||
| @@ -43,6 +43,7 @@ | |||||
| - matrix-bot-maubot | - matrix-bot-maubot | ||||
| - matrix-bot-buscarron | - matrix-bot-buscarron | ||||
| - matrix-bot-honoroit | - matrix-bot-honoroit | ||||
| - matrix-bot-postmoogle | |||||
| - matrix-bot-go-neb | - matrix-bot-go-neb | ||||
| - matrix-bot-mjolnir | - matrix-bot-mjolnir | ||||
| - matrix-synapse | - matrix-synapse | ||||