diff options
author | Wim <wim@42.be> | 2019-03-02 20:31:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 20:31:38 +0100 |
commit | c557d51b6faf146e67ececceaeb731a87e1a498b (patch) | |
tree | 632be4cb5390df898d2d0cfe0b2f4c3bbb30ce7a /matterbridge.toml.sample | |
parent | df3fdc26a01a20c3568b824f4f15f9b56a2f3db3 (diff) | |
download | matterbridge-msglm-c557d51b6faf146e67ececceaeb731a87e1a498b.tar.gz matterbridge-msglm-c557d51b6faf146e67ececceaeb731a87e1a498b.tar.bz2 matterbridge-msglm-c557d51b6faf146e67ececceaeb731a87e1a498b.zip |
Need to specify /topic:mytopic for channel configuration (zulip). (#751)
Breaking change for zulip channel configuration.
For zulip the channel configuration will now need to specify also
the topic with /topic:yourtopic.
Example:
[[gateway.inout]]
account="zulip.streamchat"
channel="general/topic:mytopic"
This fixes the incorrect PR #701 which didn't work with multiple
gateways.
Diffstat (limited to 'matterbridge.toml.sample')
-rw-r--r-- | matterbridge.toml.sample | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index 1c517a55..8fbbfe0d 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -1363,12 +1363,6 @@ Login="yourbot-bot@yourserver.zulipchat.com" #REQUIRED Server="https://yourserver.zulipchat.com" -#Topic of the messages matterbridge will use -#OPTIONAL (default "matterbridge") -#You can specify a specific topic for each channel using [gateway.inout.options] -#See more information below at the gateway configuration -Topic="matterbridge" - ## RELOADABLE SETTINGS ## Settings below can be reloaded by editing the file @@ -1608,7 +1602,7 @@ enable=true # if you specify an empty string bridge will list all the possibilities # - "Group Name" if you specify a group name the bridge will hint its JID to specify # as group names might change in time and contain weird emoticons - # zulip - stream (without the #) + # zulip - stream/topic:topicname (without the #) # # REQUIRED channel="#testing" @@ -1650,10 +1644,7 @@ enable=true [[gateway.inout]] account="zulip.streamchat" - channel="general" - #OPTIONAL - topic only works for zulip - [gateway.inout.options] - topic="topic1" + channel="general/topic:mytopic" #API example #[[gateway.inout]] |