diff options
author | Wim <wim@42.be> | 2019-02-17 21:50:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-17 21:50:05 +0100 |
commit | a8fe54a78d869ce4185ff8f25e90fd87035002ec (patch) | |
tree | 2b81715b61c61ff3e7a3b6ff19d378741a28d0f0 /matterbridge.toml.sample | |
parent | 0bcb0b882f8f49d9ae889165dc4478d1168e1f25 (diff) | |
download | matterbridge-msglm-a8fe54a78d869ce4185ff8f25e90fd87035002ec.tar.gz matterbridge-msglm-a8fe54a78d869ce4185ff8f25e90fd87035002ec.tar.bz2 matterbridge-msglm-a8fe54a78d869ce4185ff8f25e90fd87035002ec.zip |
Allow zulip bridge to specify topic per channel. Closes #701 (#723)
Diffstat (limited to 'matterbridge.toml.sample')
-rw-r--r-- | matterbridge.toml.sample | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index b3851a0e..d6c091da 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -1196,6 +1196,8 @@ 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 @@ -1438,6 +1440,13 @@ enable=true [gateway.inout.options] webhookurl="https://discordapp.com/api/webhooks/123456789123456789/C9WPqExYWONPDZabcdef-def1434FGFjstasJX9pYht73y" + [[gateway.inout]] + account="zulip.streamchat" + channel="general" + #OPTIONAL - topic only works for zulip + [gateway.inout.options] + topic="topic1" + #API example #[[gateway.inout]] #account="api.local" |