5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 02:12:29 +00:00
matterbridge/matterbridge.conf.sample

106 lines
3.8 KiB
Plaintext
Raw Normal View History

2016-07-11 22:25:32 +00:00
#This is configuration for matterbridge.
###################################################################
#IRC section
###################################################################
2015-10-23 20:34:37 +00:00
[IRC]
2016-07-11 22:25:32 +00:00
#irc server to connect to. REQUIRED
Server="irc.freenode.net:6667"
#Enable to use TLS connection to your irc server. OPTIONAL (default false)
2015-10-23 20:34:37 +00:00
UseTLS=false
2016-07-11 22:25:32 +00:00
#Enable to not verify the certificate on your irc server. OPTIONAL (default false)
#e.g. when using selfsigned certificates
2015-10-23 20:34:37 +00:00
SkipTLSVerify=true
2016-07-11 22:25:32 +00:00
#Your nick on irc. REQUIRED
Nick="matterbot"
#If you registered your bot with a service like Nickserv on freenode. OPTIONAL
NickServNick="nickserv"
NickServPassword="secret"
#Nicks you want to ignore. Messages from those users will not be sent to mattermost. OPTIONAL
IgnoreNicks="ircspammer1 ircspammer2"
2015-10-23 20:34:37 +00:00
2016-07-11 22:25:32 +00:00
###################################################################
#mattermost section
###################################################################
2015-10-23 20:34:37 +00:00
[mattermost]
2016-07-11 22:25:32 +00:00
#### Settings for webhook matterbridge.
#### These settings will not be used when using -plus switch which doesn't use webhooks.
#Url is your incoming webhook url as specified in mattermost. REQUIRED
#See account settings - integrations - incoming webhooks on mattermost.
URL="https://yourdomain/hooks/yourhookkey"
#Address to listen on for outgoing webhook requests from mattermost. REQUIRED
#See account settings - integrations - outgoing webhooks on mattermost.
#This setting will not be used when using -plus switch which doesn't use webhooks
BindAddress="0.0.0.0:9999"
#Icon that will be showed in mattermost. OPTIONAL
#This setting will not be used when using -plus switch which doesn't use webhooks
2015-10-24 16:44:45 +00:00
IconURL="http://youricon.png"
2016-07-11 22:25:32 +00:00
#### Settings for matterbridge -plus
#### Thse settings will only be used when using the -plus switch.
#The mattermost hostname. REQUIRED
Server="yourmattermostserver.domain"
#Your team on mattermost. REQUIRED
Team="yourteam"
#login/pass of your bot. Use a dedicated user for this and not your own! REQUIRED
Login="yourlogin"
Password="yourpass"
#https by default. Disable to make a http connection to your mattermost. OPTIONAL (default false)
NoTLS=false
#### Shared settings for matterbridge and -plus
#Enable to not verify the certificate on your mattermost server. OPTIONAL (default false)
#e.g. when using selfsigned certificates
SkipTLSVerify=true
#Enable to show IRC joins/parts in mattermost. OPTIONAL (default false)
ShowJoinPart=false
#Whether to prefix messages from IRC to mattermost with the sender's nick. OPTIONAL (default false)
#Useful if username overrides for incoming webhooks isn't enabled on the mattermost server
PrefixMessagesWithNick=false
2016-07-11 22:25:32 +00:00
#how to format the list of IRC nicks when displayed in mattermost. OPTIONAL (default plain)
#Possible options are "table" and "plain"
NickFormatter=plain
2016-07-11 22:25:32 +00:00
#How many nicks to list per row for formatters that support this. OPTIONAL (default 4)
NicksPerRow=4
2015-10-27 23:04:57 +00:00
2016-07-11 22:25:32 +00:00
#Nicks you want to ignore. Messages from those users will not be sent to IRC. OPTIONAL
IgnoreNicks="mmbot spammer2"
2015-12-19 15:55:49 +00:00
2016-07-11 22:25:32 +00:00
###################################################################
2015-12-19 15:55:49 +00:00
#multiple channel config
2016-07-11 22:25:32 +00:00
###################################################################
#You can specify multiple channels. REQUIRED (at least 1 channel)
#The name is just an identifier for you.
[Channel "channel1"]
#Choose the IRC channel to send mattermost messages to.
IRC="#off-topic"
#Choose the mattermost channel to send IRC messages to.
mattermost="off-topic"
2015-12-19 15:55:49 +00:00
2016-07-11 22:25:32 +00:00
[Channel "testchannel"]
IRC="#testing"
mattermost="testing"
2015-12-19 15:55:49 +00:00
2016-07-11 22:25:32 +00:00
###################################################################
#general
###################################################################
[general]
#request your API key on https://github.com/giphy/GiphyAPI. This is a public beta key. OPTIONAL
GiphyApiKey="dc6zaTOxFJmzC"