Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>pull/3862/head
| @@ -27,7 +27,7 @@ If you would like to be able to administrate the bridge from your account it can | |||||
| matrix_beeper_linkedin_configuration_extension_yaml: | | matrix_beeper_linkedin_configuration_extension_yaml: | | ||||
| bridge: | bridge: | ||||
| permissions: | permissions: | ||||
| '@alice:example.com': admin | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| ``` | ``` | ||||
| You may wish to look at `roles/custom/matrix-bridge-beeper-linkedin/templates/config.yaml.j2` to find other things you would like to configure. | You may wish to look at `roles/custom/matrix-bridge-beeper-linkedin/templates/config.yaml.j2` to find other things you would like to configure. | ||||
| @@ -15,7 +15,7 @@ matrix_heisenbridge_enabled: true | |||||
| # Setting the owner is optional as the first local user to DM `@heisenbridge:example.com` will be made the owner. | # Setting the owner is optional as the first local user to DM `@heisenbridge:example.com` will be made the owner. | ||||
| # If you are not using a local user you must set it as otherwise you can't DM it at all. | # If you are not using a local user you must set it as otherwise you can't DM it at all. | ||||
| matrix_heisenbridge_owner: "@alice:example.com" | |||||
| matrix_heisenbridge_owner: "@alice:{{ matrix_domain }}" | |||||
| # Uncomment to enable identd on host port 113/TCP (optional) | # Uncomment to enable identd on host port 113/TCP (optional) | ||||
| # matrix_heisenbridge_identd_enabled: true | # matrix_heisenbridge_identd_enabled: true | ||||
| @@ -37,7 +37,7 @@ matrix_admin: "@alice:{{ matrix_domain }}" | |||||
| matrix_mautrix_instagram_configuration_extension_yaml: | | matrix_mautrix_instagram_configuration_extension_yaml: | | ||||
| bridge: | bridge: | ||||
| permissions: | permissions: | ||||
| '@alice:example.com': admin | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| ``` | ``` | ||||
| You may wish to look at `roles/custom/matrix-bridge-mautrix-instagram/templates/config.yaml.j2` and `roles/custom/matrix-bridge-mautrix-instagram/defaults/main.yml` to find other things you would like to configure. | You may wish to look at `roles/custom/matrix-bridge-mautrix-instagram/templates/config.yaml.j2` and `roles/custom/matrix-bridge-mautrix-instagram/defaults/main.yml` to find other things you would like to configure. | ||||
| @@ -62,7 +62,7 @@ You may redefine `matrix_mautrix_meta_instagram_bridge_permissions_default` any | |||||
| ```yaml | ```yaml | ||||
| matrix_mautrix_meta_instagram_bridge_permissions_custom: | matrix_mautrix_meta_instagram_bridge_permissions_custom: | ||||
| '@alice:example.com': admin | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| ``` | ``` | ||||
| You may wish to look at `roles/custom/matrix-bridge-mautrix-meta-instagram/templates/config.yaml.j2` to find more information on the permissions settings and other options you would like to configure. | You may wish to look at `roles/custom/matrix-bridge-mautrix-meta-instagram/templates/config.yaml.j2` to find more information on the permissions settings and other options you would like to configure. | ||||
| @@ -75,7 +75,7 @@ You may redefine `matrix_mautrix_meta_messenger_bridge_permissions_default` any | |||||
| ```yaml | ```yaml | ||||
| matrix_mautrix_meta_messenger_bridge_permissions_custom: | matrix_mautrix_meta_messenger_bridge_permissions_custom: | ||||
| '@alice:example.com': admin | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| ``` | ``` | ||||
| You may wish to look at `roles/custom/matrix-bridge-mautrix-meta-messenger/templates/config.yaml.j2` to find more information on the permissions settings and other options you would like to configure. | You may wish to look at `roles/custom/matrix-bridge-mautrix-meta-messenger/templates/config.yaml.j2` to find more information on the permissions settings and other options you would like to configure. | ||||
| @@ -54,7 +54,7 @@ If you want to augment the preset permissions, you might want to set the additio | |||||
| matrix_mautrix_signal_configuration_extension_yaml: | | matrix_mautrix_signal_configuration_extension_yaml: | | ||||
| bridge: | bridge: | ||||
| permissions: | permissions: | ||||
| '@alice:example.com': admin | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| ``` | ``` | ||||
| This will add the admin permission to the specific user, while keeping the default permissions. | This will add the admin permission to the specific user, while keeping the default permissions. | ||||
| @@ -63,8 +63,8 @@ In case you want to replace the default permissions settings **completely**, pop | |||||
| ```yaml | ```yaml | ||||
| matrix_mautrix_signal_bridge_permissions: | matrix_mautrix_signal_bridge_permissions: | ||||
| '@alice:example.com': admin | |||||
| '@bob:example.com' : user | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| '@bob:{{ matrix_domain }}' : user | |||||
| ``` | ``` | ||||
| You may wish to look at `roles/custom/matrix-bridge-mautrix-signal/templates/config.yaml.j2` to find more information on the permissions settings and other options you would like to configure. | You may wish to look at `roles/custom/matrix-bridge-mautrix-signal/templates/config.yaml.j2` to find more information on the permissions settings and other options you would like to configure. | ||||
| @@ -57,7 +57,7 @@ You might also want to give permissions to administrate the bot: | |||||
| matrix_mautrix_telegram_configuration_extension_yaml: | | matrix_mautrix_telegram_configuration_extension_yaml: | | ||||
| bridge: | bridge: | ||||
| permissions: | permissions: | ||||
| '@alice:example.com': admin | |||||
| '@alice:{{ matrix_domain }}': admin | |||||
| ``` | ``` | ||||
| More details about permissions in this example: https://github.com/mautrix/telegram/blob/master/mautrix_telegram/example-config.yaml#L410 | More details about permissions in this example: https://github.com/mautrix/telegram/blob/master/mautrix_telegram/example-config.yaml#L410 | ||||