diff options
author | Alexander <papatutuwawa@polynom.me> | 2021-01-21 22:50:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 22:50:04 +0100 |
commit | 4ac636670684f0b070455585b6b9c94973ccba43 (patch) | |
tree | 9b7a14f24420ef86854504ebb4773a972b36700b /matterbridge.toml.sample | |
parent | adc0912efac715528e2a5f01c8885e007117b8ab (diff) | |
download | matterbridge-msglm-4ac636670684f0b070455585b6b9c94973ccba43.tar.gz matterbridge-msglm-4ac636670684f0b070455585b6b9c94973ccba43.tar.bz2 matterbridge-msglm-4ac636670684f0b070455585b6b9c94973ccba43.zip |
Allow the XMPP bridge to use slack compatible webhooks (xmpp) (#1364)
* Add mod_slack_webhook support to the XMPP bridge
* Replace b.webhookURL with b.GetString
* Do not return a message ID on webhook POST
* Add the XMPP webhook to the sample configuration
Diffstat (limited to 'matterbridge.toml.sample')
-rw-r--r-- | matterbridge.toml.sample | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index a92892b0..a398961a 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -310,6 +310,11 @@ StripNick=false #OPTIONAL (default false) ShowTopicChange=false +#Enable sending messages using a webhook instead of regular MUC messages. +#Only works with a prosody server using mod_slack_webhook. Does not support editing. +#OPTIONAL (default "") +WebhookURL="https://yourdomain/prosody/msg/someid" + ################################################################### #mattermost section ################################################################### |