mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-04-19 20:01:09 +03:00
Compare commits
2 Commits
5987bc5b5e
...
25498851a0
| Author | SHA1 | Date | |
|---|---|---|---|
| 25498851a0 | |||
| 613f685f54 |
@@ -168,3 +168,12 @@ matrix_mautrix_slack_bridge_encryption_pickle_key: maunium.net/go/mautrix-whatsa
|
||||
|
||||
matrix_mautrix_slack_provisioning_shared_secret: ''
|
||||
matrix_mautrix_slack_public_media_signing_key: ''
|
||||
|
||||
# Controls whether relay mode is enabled
|
||||
matrix_mautrix_slack_bridge_relay_enabled: false
|
||||
|
||||
# Controls whether only admins can set themselves as relay users
|
||||
matrix_mautrix_slack_bridge_relay_admin_only: true
|
||||
|
||||
# List of user login IDs which anyone can set as a relay, as long as the relay user is in the room
|
||||
matrix_mautrix_slack_bridge_relay_default_relays: []
|
||||
|
||||
@@ -113,12 +113,12 @@ bridge:
|
||||
relay:
|
||||
# Whether relay mode should be allowed. If allowed, the set-relay command can be used to turn any
|
||||
# authenticated user into a relaybot for that chat.
|
||||
enabled: false
|
||||
enabled: {{ matrix_mautrix_slack_bridge_relay_enabled | to_json }}
|
||||
# Should only admins be allowed to set themselves as relay users?
|
||||
# If true, non-admins can only set users listed in default_relays as relays in a room.
|
||||
admin_only: true
|
||||
admin_only: {{ matrix_mautrix_slack_bridge_relay_admin_only | to_json }}
|
||||
# List of user login IDs which anyone can set as a relay, as long as the relay user is in the room.
|
||||
default_relays: []
|
||||
default_relays: {{ matrix_mautrix_slack_bridge_relay_default_relays | to_json }}
|
||||
# The formats to use when sending messages via the relaybot.
|
||||
# Available variables:
|
||||
# .Sender.UserID - The Matrix user ID of the sender.
|
||||
|
||||
@@ -196,3 +196,6 @@ matrix_continuwuity_environment_variables_extension: ''
|
||||
|
||||
matrix_continuwuity_forbidden_remote_server_names: []
|
||||
matrix_continuwuity_forbidden_remote_room_directory_server_names: []
|
||||
|
||||
# Controls the `url_preview_domain_contains_allowlist` setting.
|
||||
matrix_continuwuity_url_preview_domain_contains_allowlist: []
|
||||
|
||||
@@ -1215,7 +1215,7 @@ forbidden_remote_room_directory_server_names = {{ matrix_continuwuity_forbidden_
|
||||
# attack surface to your server, you are expected to be aware of the risks
|
||||
# by doing so.
|
||||
#
|
||||
#url_preview_domain_contains_allowlist = []
|
||||
url_preview_domain_contains_allowlist = {{ matrix_continuwuity_url_preview_domain_contains_allowlist | to_json }}
|
||||
|
||||
# Vector list of explicit domains allowed to send requests to for URL
|
||||
# previews.
|
||||
|
||||
Reference in New Issue
Block a user