mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-12-22 12:35:51 +00:00
Merge pull request #2071 from etkecc/postmoogle-users
bot-postmoogle: add POSTMOOGLE_USERS config option
This commit is contained in:
commit
792bff91f8
@ -84,6 +84,15 @@ matrix_bot_postmoogle_noowner: false
|
|||||||
# Allow Postmoogle use by users over federation
|
# Allow Postmoogle use by users over federation
|
||||||
matrix_bot_postmoogle_federation: false
|
matrix_bot_postmoogle_federation: false
|
||||||
|
|
||||||
|
# A list of whitelisted users allowed to use the bridge.
|
||||||
|
# If not defined, everyone is allowed.
|
||||||
|
# Example set of rules:
|
||||||
|
# - @someone:example.com
|
||||||
|
# - @another:example.com
|
||||||
|
# - @bot.*:example.com
|
||||||
|
# - @*:another.com
|
||||||
|
matrix_bot_postmoogle_users: []
|
||||||
|
|
||||||
# Sentry DSN
|
# Sentry DSN
|
||||||
matrix_bot_postmoogle_sentry: ''
|
matrix_bot_postmoogle_sentry: ''
|
||||||
|
|
||||||
|
@ -12,5 +12,6 @@ POSTMOOGLE_LOGLEVEL={{ matrix_bot_postmoogle_loglevel }}
|
|||||||
POSTMOOGLE_NOENCRYPTION={{ matrix_bot_postmoogle_noencryption }}
|
POSTMOOGLE_NOENCRYPTION={{ matrix_bot_postmoogle_noencryption }}
|
||||||
POSTMOOGLE_NOOWNER={{ matrix_bot_postmoogle_noowner }}
|
POSTMOOGLE_NOOWNER={{ matrix_bot_postmoogle_noowner }}
|
||||||
POSTMOOGLE_FEDERATION={{ matrix_bot_postmoogle_federation }}
|
POSTMOOGLE_FEDERATION={{ matrix_bot_postmoogle_federation }}
|
||||||
|
POSTMOOGLE_USERS={{ matrix_bot_postmoogle_users | default('') | join(' ') }}
|
||||||
|
|
||||||
{{ matrix_bot_postmoogle_environment_variables_extension }}
|
{{ matrix_bot_postmoogle_environment_variables_extension }}
|
||||||
|
Loading…
Reference in New Issue
Block a user