2022-02-11 18:06:11 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Download matrix_encryption_disabler
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.get_url:
|
2022-02-11 18:06:11 +00:00
|
|
|
url: "{{ matrix_synapse_ext_encryption_disabler_download_url }}"
|
|
|
|
dest: "{{ matrix_synapse_ext_path }}/matrix_e2ee_filter.py"
|
|
|
|
force: true
|
|
|
|
mode: 0440
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
2022-04-19 19:01:14 +00:00
|
|
|
register: result
|
2022-11-04 14:44:29 +00:00
|
|
|
retries: "{{ devture_playbook_help_geturl_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_geturl_retries_delay }}"
|
2022-04-19 19:01:14 +00:00
|
|
|
until: result is not failed
|
2022-02-11 18:06:11 +00:00
|
|
|
|
2022-07-18 07:39:08 +00:00
|
|
|
- ansible.builtin.set_fact:
|
2022-02-11 18:06:11 +00:00
|
|
|
matrix_synapse_modules: |
|
|
|
|
{{
|
2022-07-18 08:22:05 +00:00
|
|
|
matrix_synapse_modules | default([])
|
2022-02-11 18:06:11 +00:00
|
|
|
+
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"module": "matrix_e2ee_filter.EncryptedRoomFilter",
|
|
|
|
"config": matrix_synapse_ext_encryption_config
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}}
|
|
|
|
|
|
|
|
matrix_synapse_container_extra_arguments: >
|
2022-05-18 12:43:39 +00:00
|
|
|
{{
|
2022-07-18 08:22:05 +00:00
|
|
|
matrix_synapse_container_extra_arguments | default([])
|
2022-05-18 12:43:39 +00:00
|
|
|
+
|
|
|
|
["--mount type=bind,src={{ matrix_synapse_ext_path }}/matrix_e2ee_filter.py,dst={{ matrix_synapse_in_container_python_packages_path }}/matrix_e2ee_filter.py,ro"]
|
|
|
|
}}
|
2022-02-11 18:06:11 +00:00
|
|
|
|
|
|
|
matrix_synapse_additional_loggers: >
|
2022-05-18 12:43:39 +00:00
|
|
|
{{
|
|
|
|
matrix_synapse_additional_loggers
|
|
|
|
+
|
|
|
|
[{'name': 'matrix_e2ee_filter', 'level': 'INFO'}]
|
|
|
|
}}
|