|
|
|
@@ -43,6 +43,18 @@ matrix_mxisd_dns_overwrite_enabled: false |
|
|
|
matrix_mxisd_dns_overwrite_homeserver_client_name: "{{ matrix_server_fqn_matrix }}" |
|
|
|
matrix_mxisd_dns_overwrite_homeserver_client_value: "http://matrix-synapse:8008" |
|
|
|
|
|
|
|
# Override the default email templates |
|
|
|
# To use this, fill in the template variables with the full desired template as a multi-line YAML variable |
|
|
|
# |
|
|
|
# More info: |
|
|
|
# https://github.com/kamax-matrix/mxisd/blob/master/docs/threepids/notification/template-generator.md |
|
|
|
# https://github.com/kamax-matrix/mxisd/tree/master/src/main/resources/threepids/email |
|
|
|
matrix_mxisd_threepid_medium_email_custom_templates_enabled: false |
|
|
|
matrix_mxisd_threepid_medium_email_custom_invite_template: "" |
|
|
|
matrix_mxisd_threepid_medium_email_custom_session_validation_template: "" |
|
|
|
matrix_mxisd_threepid_medium_email_custom_unbind_fraudulent_template: "" |
|
|
|
matrix_mxisd_threepid_medium_email_custom_matrixid_template: "" |
|
|
|
|
|
|
|
# Default mxisd configuration template which covers the generic use case. |
|
|
|
# You can customize it by controlling the various variables inside it. |
|
|
|
# |
|
|
|
@@ -89,6 +101,27 @@ matrix_mxisd_configuration_yaml: | |
|
|
|
tls: {{ matrix_mxisd_threepid_medium_email_connectors_smtp_tls }} |
|
|
|
login: {{ matrix_mxisd_threepid_medium_email_connectors_smtp_login }} |
|
|
|
password: {{ matrix_mxisd_threepid_medium_email_connectors_smtp_password }} |
|
|
|
{% if matrix_mxisd_threepid_medium_email_custom_templates_enabled %} |
|
|
|
generators: |
|
|
|
template: |
|
|
|
{% if matrix_mxisd_threepid_medium_email_custom_invite_template %} |
|
|
|
invite: '/var/mxisd/invite-template.eml' |
|
|
|
{% endif %} |
|
|
|
{% if matrix_mxisd_threepid_medium_email_custom_session_validation_template or matrix_mxisd_threepid_medium_email_custom_unbind_fraudulent_template %} |
|
|
|
session: |
|
|
|
{% if matrix_mxisd_threepid_medium_email_custom_session_validation_template %} |
|
|
|
validation: '/var/mxisd/validate-template.eml' |
|
|
|
{% endif %} |
|
|
|
{% if matrix_mxisd_threepid_medium_email_custom_unbind_fraudulent_template %} |
|
|
|
unbind: |
|
|
|
frandulent: '/var/mxisd/unbind-fraudulent.eml' |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
{% if matrix_mxisd_threepid_medium_email_custom_matrixid_template %} |
|
|
|
generic: |
|
|
|
matrixId: '/var/mxisd/mxid-template.eml' |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
synapseSql: |
|
|
|
enabled: {{ matrix_mxisd_synapsesql_enabled }} |
|
|
|
|