5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-22 11:40:27 +00:00

Update documentation

This commit is contained in:
Wim 2016-11-01 23:10:29 +01:00
parent be513622ac
commit 8e606e3cef
2 changed files with 29 additions and 14 deletions

View File

@ -7,23 +7,27 @@ See matterbridge.toml.sample for an example
### General ### General
* Allow for bridging the same type of bridge, which means you can eg bridge between multiple mattermosts. * Allow for bridging the same type of bridge, which means you can eg bridge between multiple mattermosts.
* The bridge is now actually a gateway which has support multiple in and out bridges. (and supports multiple gateways). * The bridge is now actually a gateway which has support multiple in and out bridges. (and supports multiple gateways).
* Discord support added. See matterbridge.toml.sample for more information * Discord support added. See matterbridge.toml.sample for more information.
* Samechannelgateway support added, easier configuration for 1:1 mapping of protocols with same channel names. #35 * Samechannelgateway support added, easier configuration for 1:1 mapping of protocols with same channel names. #35
* Better debugging output * Support for override from environment variables. #50
* discord: new protocol support added (http://www.discordapp.com) * Better debugging output.
* mattermost: Support attachments * discord: New protocol support added. (http://www.discordapp.com)
* irc: Strip colors #33 * mattermost: Support attachments.
* irc: Strip colors. #33
* irc: Anti-flooding support. #40
* irc: Forward channel notices.
## Bugfix ## Bugfix
* irc: Split newlines #37 * irc: Split newlines. #37
* irc: Only respond to nick related notices from nickserv * irc: Only respond to nick related notices from nickserv.
* irc: Ignore queries send to the bot * irc: Ignore queries send to the bot.
* irc: Ignore messages from ourself * irc: Ignore messages from ourself.
* irc: only output the "users on irc information" when asked with "!users" * irc: Only output the "users on irc information" when asked with "!users".
* mattermost: Fix mattermost channel joins * irc: Actually wait until connection is complete before saying it is.
* mattermost: drop messages not from our team * mattermost: Fix mattermost channel joins.
* slack: do not panic on non-existing channels * mattermost: Drop messages not from our team.
* general: exit when a bridge fails to start * slack: Do not panic on non-existing channels.
* general: Exit when a bridge fails to start.
# v0.6.1 # v0.6.1
## New features ## New features

View File

@ -49,6 +49,17 @@ RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
#OPTIONAL #OPTIONAL
IgnoreNicks="ircspammer1 ircspammer2" IgnoreNicks="ircspammer1 ircspammer2"
#Flood control
#Delay in milliseconds between each message send to the IRC server
#OPTIONAL (default 1300)
MessageDelay=1300
#Maximum amount of messages to hold in queue. If queue is full
#messages will be dropped.
#<clipped> will be add to the message that fills the queue.
#OPTIONAL (default 30)
MessageQueue=30
################################################################### ###################################################################
#XMPP section #XMPP section
################################################################### ###################################################################