Fix regex in matrix_appservice_webhooks_registration_yaml

This commit is contained in:
David Gnedt 2020-01-15 19:15:42 +01:00
parent 4840214193
commit 73d0bf7170

View file

@ -94,7 +94,7 @@ matrix_appservice_webhooks_registration_yaml: |
namespaces:
users:
- exclusive: true
regex: '@{{ matrix_appservice_webhooks_user_prefix }}*:{{ matrix_domain }}'
regex: '^@{{ matrix_appservice_webhooks_user_prefix | regex_escape }}.*:{{ matrix_domain | regex_escape }}$'
aliases: []
rooms: []
url: "{{ matrix_appservice_webhooks_appservice_url }}:{{ matrix_appservice_webhooks_matrix_port }}"