diff options
Diffstat (limited to 'matterbridge.conf.sample')
-rw-r--r-- | matterbridge.conf.sample | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/matterbridge.conf.sample b/matterbridge.conf.sample index 55746539..a8afc48c 100644 --- a/matterbridge.conf.sample +++ b/matterbridge.conf.sample @@ -42,6 +42,31 @@ RemoteNickFormat="{NICK}: " IgnoreNicks="ircspammer1 ircspammer2" ################################################################### +#XMPP section +################################################################### +[XMPP] +#xmpp server to connect to. +#REQUIRED +Server="jabber.example.com:5222" + +#Jid +#REQUIRED +Jid="user@example.com" + +#Password +#REQUIRED +Password="yourpass" + +#MUC +#REQUIRED +Muc="conference.jabber.example.com" + +#Your nick in the rooms +#REQUIRED +Nick="xmppbot" + + +################################################################### #mattermost section ################################################################### @@ -146,3 +171,8 @@ mattermost="testing" #request your API key on https://github.com/giphy/GiphyAPI. This is a public beta key. #OPTIONAL GiphyApiKey="dc6zaTOxFJmzC" + +#Choose only one protocol to bridge, do not set both to true! +#REQUIRED +Irc=true +Xmpp=false |