From bbea0057007e07e195967b9774b22418259d47ad Mon Sep 17 00:00:00 2001 From: Simon Thoby Date: Sun, 9 Apr 2023 14:33:16 +0200 Subject: [PATCH] matrix: add an example of application service file in matterbridge.toml.sample --- matterbridge.toml.sample | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index 33f8543f..8215806d 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -1339,6 +1339,26 @@ AppServiceHost="0.0.0.0" AppServicePort=1234 #Path to the application service configuration file (in the format used by synapse) +#Example content of an application service file: +#``` +# id: "Matterbridge" +# url: "http://:" +# as_token: "" +# hs_token: "" +# sender_localpart: "_bridge_bot" +# namespaces: +# users: +# - exclusive: true +# regex: "@__bridge_.*" +# aliases: +# - exclusive: false +# regex: "#__bridge_.*" +# rooms: [] +# # handle ephemeral events +# push_ephemeral: true +# # same thing as 'push_ephemeral', but synapse currently expects this prefix until MSC2409 is fully stabilized +# de.sorunome.msc2409.push_ephemeral: true +#``` AppServiceConfigPath="appservice_matterbridge_config.yml" ###################################################################