summaryrefslogtreecommitdiffstats
path: root/matterbridge.toml.sample
Commit message (Collapse)AuthorAgeFilesLines
* Add support for using ID in channel config (mattermost) (#1715)Wim2022-02-061-1/+2
|
* Add UseUsername option (mattermost). Fixes #1665 (#1714)Wim2022-02-061-0/+4
|
* Add support for client certificate (irc) (#1710)Wim2022-02-051-0/+7
| | | Supports https://libera.chat/guides/certfp.html
* Remove GroupID (vk) (#1668)Daniil Suvorov2022-01-091-4/+0
|
* Add support for Harmony (#1656)Janet Blackquill2021-12-181-0/+16
| | | | | | Harmony is a relatively new (1,5yo) chat protocol with a small community. This introduces support for Harmony into Matterbridge, using the functionality specifically designed for bridge bots. The implementation is a modest 200 lines of code.
* Fix Zulip example in matterbridge.toml.sample (#1657)Yash Rathore2021-12-101-1/+1
| | | | | Commit 11fc4c286fbcd6c1519362d2b0123ebd4ab19067 changed the example for Zulip, in a way that was not accurate to what zulip.go expects, hence this commit fixes the example.
* Update matterbridge.toml.sample (#1644)PeGaSuS2021-12-021-0/+1
| | | Missing `{NOPINGNICK}` example on the general re-loadable settings
* Allow binding to IP on IRC (#1640)Santtu Lakkala2021-11-291-0/+5
| | | | Add configuration option "Bind" that is passed on to girc, allowing to choose which IP address to use on systems that have multiple ones.
* Add UserName and RealName options for IRC (#1590)Iris Morelle2021-10-161-0/+8
| | | | | | This allows setting custom values for the IRC username/ident and real name (gecos) fields at server registration time with gIRC. Co-authored-by: Wim <wim@42.be>
* Add support for anonymous connection (xmpp) (#1548)tytan6522021-07-311-2/+6
|
* Use correct URL for Mediaserver Setup (#1550)Brian V2021-07-201-1/+1
|
* Update matterbridge.toml.sampleWim2021-06-251-7/+0
|
* Add support for separate display name (nctalk) (#1506)Gary Kim2021-06-191-1/+4
| | | Signed-off-by: Gary Kim <gary@garykim.dev>
* Update irc references (#1499)Wim2021-05-301-7/+7
|
* Add a MessageClipped option to set your own clipped message. Closes #1359 ↵Wim2021-05-271-11/+20
| | | | (#1487)
* Add MxId/Token login option for Matrix (#1438)Jason Robinson2021-05-171-1/+5
| | | | | | | | | | | | | * Add possibility for using MxId/Token with Matrix Makes it possible to configure a Matrix bot to use Matrix ID + Access token instead of username/password. This makes it possible to use the bot in environments where password login is disabled (for example SSO environments). Matrix user ID's are commonly referred to as "MXID's". I thought about (ab)using "Login" here but it felt like a bad idea given it's used as "username" for the password login. None of the other configuration items felt fitting. Closes #1429 * MxId -> MxID * Add err != nil to matrix.NewClient
* Add additional variable for TGS conversion in sample config (#1472)Bill Mcilhargey2021-05-131-0/+7
| | | | | | | | | | | this was buried and wanted to bring it up in the config Convert Tgs (Telegram animated sticker) images to PNG before upload. This is useful when your bridge also contains platforms that do not support animated WebP files, like Discord. This requires the external dependency `lottie`, which can be installed like this: `pip install lottie cairosvg` https://github.com/42wim/matterbridge/issues/874 https://github.com/42wim/matterbridge/pull/1173
* discord: Add AllowMention to restrict allowed mentions (#1462)Alexandre GV2021-05-131-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | * Add DisablePingEveryoneHere/DisablePingRoles/DisablePingUsers keys to config * Add basic AllowedMentions behavior to discord webhooks * Initialize b.AllowedMentions on Discord Bridger init * Call b.getAllowedMentions on each webhook to allow config hot reloading * Add AllowedMentions on all Discord webhooks/messages * Add DisablePingEveryoneHere/DisablePingRoles/DisablePingUsers to matterbridge.toml.sample * Change 'Disable' for 'Allow' and revert logic in Discord AllowedMentions * Update Discord AllowedMentions in matterbridge.toml.sample * Fix typo in DisableWebPagePreview * Replace 'AllowPingEveryoneHere' with 'AllowPingEveryone' * Replace 3 AllowPingEveryone/Roles/Users bools with an array * Fix typo
* Fix missing word in matterbridge.toml.sample (#1398)PeGaSuS2021-02-111-1/+1
| | | Co-authored-by: Qais Patankar <qaisjp@gmail.com>
* Add vk bridge (#1372)Ivanik2021-01-291-0/+14
| | | | | | | | | | | | | | | | | | | | | * Add vk bridge * Vk bridge attachments * Vk bridge forwarded messages * Vk bridge sample config and code cleanup * Vk bridge add vendor * Vk bridge message edit * Vk bridge: fix fetching names of other bots * Vk bridge: code cleanup * Vk bridge: fix shadows declaration * Vk bridge: remove UseFileURL
* Allow the XMPP bridge to use slack compatible webhooks (xmpp) (#1364)Alexander2021-01-211-0/+5
| | | | | | | | | * 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
* Add support for stateless bridging via draft/relaymsg (irc) (#1339)James Lu2020-12-301-0/+13
| | | | | | | | | | | | | | | | | * irc: add support for stateless bridging via draft/relaymsg As discussed at https://github.com/42wim/matterbridge/issues/667#issuecomment-634214165 * irc: handle the draft/relaymsg tag in spoofed messages too * Apply suggestions from code review Co-authored-by: Wim <wim@42.be> * Run gofmt on irc.go * Document relaymsg in matterbridge.toml.sample Co-authored-by: Wim <wim@42.be>
* Update webhook documentation (discord) (#1335)Qais Patankar2020-12-171-7/+11
|
* Add UserID to RemoteNickFormat and Tengo (#1308)JeremyRand2020-11-251-3/+5
| | | | | | | | | | | * Add UserID to RemoteNickFormat and Tengo * Use strings.ReplaceAll in gateway.modifyUsername Fixes a warning from gocritic linter. * Use Unicode escape sequence instead of raw ZWSP in gateway.modifyUsername Fixes a warning from stylecheck linter.
* Send the display name instead of the user name (matrix) (#1282)Simon THOBY2020-11-221-0/+3
| | | | | | | | | * matrix: send the display name (the nickname in matrix parlance) instead of the user name There is also the option UseUserName (already in use by the discord bridge) to turn back to the old behavior. * matrix: update displayNames on join events * matrix: introduce a helper.go file to keep matrix.go size reasonable
* Add NoTLS option to allow plaintext XMPP connections (#1288)George2020-11-131-0/+4
| | | Co-authored-by: George <zhoreeq@users.noreply.github.com>
* Allow tengo to drop messages using msgDrop (#1272)Wim2020-10-211-1/+3
|
* Add PingDelay option (irc) (#1269)Wim2020-10-211-0/+6
|
* Append a suffix if user is a guest user (nctalk) (#1250)Gary Kim2020-10-011-0/+3
| | | Signed-off-by: Gary Kim <gary@garykim.dev>
* Add Mumble support (#1245)Sebastian P2020-10-011-0/+48
|
* Add TLSConfig to nctalk (#1195)Gary Kim2020-08-301-0/+5
| | | Signed-off-by: Gary Kim <gary@garykim.dev>
* Replace gorilla with melody for websocket API (#1205)NikkyAI2020-08-261-0/+2
|
* Fix typo in documentation (#1183)Wim2020-07-301-1/+1
|
* Add Nextcloud Talk support (#1167)Gary Kim2020-07-181-1/+18
| | | Signed-off-by: Gary Kim <gary@garykim.dev>
* Add an option to log into a file rather than stdout (#1168)z3bra2020-07-181-0/+8
| | | Use Logfile option in the `[general]` section
* Add StripMarkdown option (irc). (#1145)Wim2020-05-231-0/+4
| | | Enable `StripMarkdown` to strip markdown for irc.
* Add an option to disable sending HTML to matrix. Fixes #1022 (#1135)Wim2020-05-141-0/+5
|
* Add JoinDelay option (irc). Fixes #1084 (#1098)Wim2020-04-191-0/+6
|
* Clarify terminology used in mapping group chat IDs to channels in config (#1079)Jerry Heiselman2020-04-081-27/+37
| | | | | * Clarify embedded docs for channel specification Should help with #1072
* Add more msteams docs (#1051)Wim2020-03-211-0/+92
|
* Add markdownv2 mode for telegram documentation, see #1032 (#1037)burner10242020-03-181-4/+5
|
* Make some discord matterbridge.toml.sample lines less verboseQais Patankar2020-03-081-10/+10
|
* Remove trailing newlines from matterbridge.toml.sampleQais Patankar2020-03-081-122/+122
|
* Refactor matterbridge.toml.sample discord sectionQais Patankar2020-03-081-81/+86
|
* Add ability to procure avatars from the destination bridge (#1000)Qais Patankar2020-02-091-0/+6
| | | | | | | | | | | | * remote_avatar: add UseLocalAvatar * remote_avatar: make sure msg.Protocol is always set correctly * remote_avatars: support msg.Account * remote_avatar: add to matterbridge.toml.sample * remote_avatar: clarify something
* Add DisableWebPagePreview option (telegram). Closes #980 (#994)Wim2020-02-021-0/+4
|
* Add QuoteLengthLimit option (telegram) fixes #963 (#985)Humorhenker2020-01-301-0/+4
| | | * QuoteLengthLimit option added to limit max. quoted message length if QuoteLengthLimit = 0 the whole message will be quoted
* Add token support (RocketChat) (#892)Michal Suchánek2019-09-131-0/+5
| | | Signed-off-by: Michal Suchanek <msuchanek@suse.de>
* Add initial Keybase Chat support (#877)cori hudson2019-08-261-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * initial work on native keybase bridging * Hopefully make a functional keybase bridge * add keybase to bridgemap * send to right channel, try to figure out received msgs * add account and userid * i am a Dam Fool * Fix formatting for messages, handle /me * update vendors, ran golint and goimports * move handlers to handlers.go, clean up unused config options * add sample config, fix inconsistent remote nick handling * Update readme with keybase links * Resolve fixmie errors * Error -> Errorf * fix linting errors in go.mod and go.sum * explicitly join channels, ignore messages from non-specified channels * check that team names match before bridging message
* Add support for discord category channels (discord) (#863)Wim2019-07-151-0/+1
| | | | | | | | | | | | | | This adds support for the discord category option that can be used to group channels in. This means we can have multiple channels with the same name. We add the option to specify a category in the channel option of a discord account under [[gateway]] Besides channel="channel" or channel="ID:channelID", now also channel="category/channel" can be specified. This change remains backwards compatible with people that haven't specified the category and incorporates the fix in #861