mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-09 21:03:58 +00:00
25dfbdf1d7
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
21 lines
431 B
Django/Jinja
21 lines
431 B
Django/Jinja
{#
|
|
SPDX-FileCopyrightText: 2022 MDAD Team and contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
{
|
|
"Smtp": {
|
|
"ListenInterface": "0.0.0.0:2525",
|
|
"Hostname": {{ matrix_email2matrix_smtp_hostname|to_json }},
|
|
"Workers": 10
|
|
},
|
|
"Matrix": {
|
|
"Mappings": {{ matrix_email2matrix_matrix_mappings | to_nice_json }}
|
|
},
|
|
"Misc": {
|
|
"Debug": {{ matrix_email2matrix_misc_debug|to_json }}
|
|
}
|
|
}
|