Skip to content
Snippets Groups Projects
Commit a7f98d18 authored by void's avatar void
Browse files

matterbridge testconfig

parent 9630135a
No related branches found
No related tags found
No related merge requests found
......@@ -607,7 +607,7 @@ mattermost['service_enable_post_icon_override'] = true
# mattermost['service_enable_testing'] = false
# mattermost['service_enable_security_fix_alert'] = true
# mattermost['service_enable_insecure_outgoing_connections'] = false
# mattermost['service_enable_outgoing_webhooks'] = true
mattermost['service_enable_outgoing_webhooks'] = true
# mattermost['service_enable_commands'] = false
# mattermost['service_enable_only_admin_integrations'] = true
# mattermost['service_enable_oauth_service_provider'] = false
......
......@@ -8,12 +8,14 @@
- name: get secrets from server 1
slurp: src={{ item }}
with_items:
- /srv/matterbridge/secret/mattermost_password
register: ldap_secrets
- /srv/matterbridge/secret/mattermost_hook
- /srv/matterbridge/secret/telegram_token
register: matterbridge_secrets
- name: get secrets from server 2
set_fact:
mattermost_password: "{{ ldap_secrets.results | selectattr('item', 'equalto', '/srv/matterbridge/secret/mattermost_password') | map(attribute='content') | list | first | b64decode | regex_replace('\\s', '') }}"
mattermost_hook: "{{ matterbridge_secrets.results | selectattr('item', 'equalto', '/srv/matterbridge/secret/mattermost_hook') | map(attribute='content') | list | first | b64decode | regex_replace('\\s', '') }}"
telegram_token: "{{ matterbridge_secrets.results | selectattr('item', 'equalto', '/srv/matterbridge/secret/telegram_token') | map(attribute='content') | list | first | b64decode | regex_replace('\\s', '') }}"
# Folder Structure
......@@ -31,12 +33,7 @@
# Konfigurationsdateien erstellen
- name: Konfig-Datei Gitlab
template:
src: "matterbridge.conf"
dest: "/srv/matterbridge/etc/matterbridge.conf"
- name: Konfig-Datei Gitlab
- name: Konfig-Datei Matterbridge
template:
src: "matterbridge.toml"
dest: "/srv/matterbridge/etc/matterbridge.toml"
......@@ -44,20 +41,13 @@
# Docker Container starten
#- name: start matterbridge docker
# docker_container:
# name: matterbridge-service
# image: 42wim/matterbridge:0.6.1
# state: started
# restart_policy: always
# volumes:
# - /srv/matterbridge/etc/matterbridge.conf:/matterbridge.conf
#- name: start matterbridge docker
# docker_container:
# name: matterbridge-service
# image: 42wim/matterbridge:latest
# state: started
# restart_policy: always
# volumes:
# - /srv/matterbridge/etc/matterbridge.toml:/matterbridge.toml
- name: start matterbridge docker
docker_container:
name: matterbridge-service
image: 42wim/matterbridge:0.9.2
state: started
restart_policy: always
ports:
- 172.17.0.1:9999:9999
volumes:
- /srv/matterbridge/etc/matterbridge.toml:/matterbridge.toml
#This is configuration for matterbridge.
###################################################################
#IRC section
###################################################################
[IRC]
#Enable enables this bridge
#OPTIONAL (default false)
Enable=true
#irc server to connect to.
#REQUIRED
Server="irc.freenode.net:6667"
#Enable to use TLS connection to your irc server.
#OPTIONAL (default false)
UseTLS=false
#Enable SASL (PLAIN) authentication. (freenode requires this from eg AWS hosts)
#It uses NickServNick and NickServPassword as login and password
#OPTIONAL (default false)
UseSASL=false
#Enable to not verify the certificate on your irc server. i
#e.g. when using selfsigned certificates
#OPTIONAL (default false)
SkipTLSVerify=true
#Your nick on irc.
#REQUIRED
Nick="|MatterBOT|"
#If you registered your bot with a service like Nickserv on freenode.
#Also being used when UseSASL=true
#OPTIONAL
#NickServNick="nickserv"
#NickServPassword="secret"
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#OPTIONAL (default {BRIDGE}-{NICK})
RemoteNickFormat="[{BRIDGE}] <{NICK}>"
#Nicks you want to ignore.
#Messages from those users will not be sent to other bridges.
#OPTIONAL
#IgnoreNicks="ircspammer1 ircspammer2"
###################################################################
#XMPP section
###################################################################
#[XMPP]
#Enable enables this bridge
#OPTIONAL (default false)
#Enable=true
#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
###################################################################
[mattermost]
#Enable enables this bridge
#OPTIONAL (default false)
Enable=true
#### 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.
#See account settings - integrations - incoming webhooks on mattermost.
#REQUIRED
#URL="https://yourdomain/hooks/yourhookkey"
#Address to listen on for outgoing webhook requests from mattermost.
#See account settings - integrations - outgoing webhooks on mattermost.
#This setting will not be used when using -plus switch which doesn't use
#webhooks
#REQUIRED
#BindAddress="0.0.0.0:9999"
#Icon that will be showed in mattermost.
#OPTIONAL
#IconURL="http://youricon.png"
#### Settings for matterbridge -plus
#### Thse settings will only be used when using the -plus switch.
#The mattermost hostname.
#REQUIRED
Server="mattermost.warpzone.ms"
#Your team on mattermost.
#REQUIRED
Team="warpzone"
#login/pass of your bot.
#Use a dedicated user for this and not your own!
#REQUIRED
Login="matterbot"
Password="{{ mattermost_password }}"
#Enable this to make a http connection (instead of https) to your mattermost.
#OPTIONAL (default false)
NoTLS=false
#### Shared settings for matterbridge and -plus
#Enable to not verify the certificate on your mattermost server.
#e.g. when using selfsigned certificates
#OPTIONAL (default false)
SkipTLSVerify=true
#Enable to show IRC joins/parts in mattermost.
#OPTIONAL (default false)
ShowJoinPart=false
#Whether to prefix messages from other bridges to mattermost with the sender's nick.
#Useful if username overrides for incoming webhooks isn't enabled on the
#mattermost server. If you set PrefixMessagesWithNick to true, each message
#from bridge to Mattermost will by default be prefixed by "bridge-" + nick. You can,
#however, modify how the messages appear, by setting (and modifying) RemoteNickFormat
#OPTIONAL (default false)
PrefixMessagesWithNick=false
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#OPTIONAL (default {BRIDGE}-{NICK})
RemoteNickFormat="[{BRIDGE}] <{NICK}> "
#how to format the list of IRC nicks when displayed in mattermost.
#Possible options are "table" and "plain"
#OPTIONAL (default plain)
NickFormatter=plain
#How many nicks to list per row for formatters that support this.
#OPTIONAL (default 4)
NicksPerRow=4
#Nicks you want to ignore. Messages from those users will not be bridged.
#OPTIONAL
#IgnoreNicks="mmbot spammer2"
###################################################################
#Gitter section
#Best to make a dedicated gitter account for the bot.
###################################################################
#[Gitter]
#Enable enables this bridge
#OPTIONAL (default false)
#Enable=true
#Token to connect with Gitter API
#You can get your token by going to https://developer.gitter.im/docs/welcome and SIGN IN
#REQUIRED
#Token="Yourtokenhere"
#Nicks you want to ignore. Messages of those users will not be bridged.
#OPTIONAL
#IgnoreNicks="spammer1 spammer2"
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#OPTIONAL (default {BRIDGE}-{NICK})
#RemoteNickFormat="[{BRIDGE}] <{NICK}>
###################################################################
#slack section
###################################################################
#[slack]
#Enable enables this bridge
#OPTIONAL (default false)
#Enable=true
#### Settings for webhook matterbridge.
#### These settings will not be used when useAPI is enabled
#Url is your incoming webhook url as specified in slack
#See account settings - integrations - incoming webhooks on slack
#REQUIRED (unless useAPI=true)
#URL="https://hooks.slack.com/services/yourhook"
#Address to listen on for outgoing webhook requests from slack
#See account settings - integrations - outgoing webhooks on slack
#This setting will not be used when useAPI is eanbled
#webhooks
#REQUIRED (unless useAPI=true)
#BindAddress="0.0.0.0:9999"
#Icon that will be showed in slack
#OPTIONAL
#IconURL="http://youricon.png"
#### Settings for using slack API
#OPTIONAL
#useAPI=false
#Token to connect with the Slack API
#REQUIRED (when useAPI=true)
#Token="yourslacktoken"
#### Shared settings for webhooks and API
#Whether to prefix messages from other bridges to mattermost with the sender's nick.
#Useful if username overrides for incoming webhooks isn't enabled on the
#slack server. If you set PrefixMessagesWithNick to true, each message
#from bridge to Slack will by default be prefixed by "bridge-" + nick. You can,
#however, modify how the messages appear, by setting (and modifying) RemoteNickFormat
#OPTIONAL (default false)
#PrefixMessagesWithNick=false
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#OPTIONAL (default {BRIDGE}-{NICK})
#RemoteNickFormat="[{BRIDGE}] <{NICK}>
#how to format the list of IRC nicks when displayed in slack
#Possible options are "table" and "plain"
#OPTIONAL (default plain)
#NickFormatter=plain
#How many nicks to list per row for formatters that support this.
#OPTIONAL (default 4)
#NicksPerRow=4
#Nicks you want to ignore. Messages from those users will not be bridged.
#OPTIONAL
#IgnoreNicks="mmbot spammer2"
###################################################################
#multiple channel config
###################################################################
#You can specify multiple channels.
#The name is just an identifier for you.
#REQUIRED (at least 1 channel)
[Channel "channel1"]
#Choose the IRC channel to send messages to.
IRC="#warpzone"
#Choose the mattermost channel to messages to.
mattermost="town-square"
#Choose the xmpp channel to send messages to.
#xmpp="off-topic"
#Choose the Gitter channel to send messages to.
#Gitter channels are named "user/repo"
#gitter="42wim/matterbridge"
#Choose the slack channel to send messages to.
#slack="general"
#[Channel "testchannel"]
#IRC="#testing"
#mattermost="testing"
#xmpp="testing"
#gitter="user/repo"
#slack="testing"
###################################################################
#general
###################################################################
[general]
#request your API key on https://github.com/giphy/GiphyAPI. This is a public beta key.
#OPTIONAL
#GiphyApiKey="dc6zaTOxFJmzC"
#Enabling plus means you'll use the API version instead of the webhooks one
Plus=true
......@@ -13,6 +13,10 @@
#REQUIRED
Server="irc.freenode.net:6667"
#Password for irc server (if necessary)
#OPTIONAL (default "")
#Password=""
#Enable to use TLS connection to your irc server.
#OPTIONAL (default false)
UseTLS=false
......@@ -29,7 +33,7 @@ SkipTLSVerify=true
#Your nick on irc.
#REQUIRED
Nick="|MatterBOT|"
Nick="WZBot"
#If you registered your bot with a service like Nickserv on freenode.
#Also being used when UseSASL=true
......@@ -37,46 +41,26 @@ Nick="|MatterBOT|"
#NickServNick="nickserv"
#NickServPassword="secret"
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge
#OPTIONAL (default {BRIDGE}-{NICK})
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
#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
#Nicks you want to ignore.
#Messages from those users will not be sent to other bridges.
#OPTIONAL
#IgnoreNicks="ircspammer1 ircspammer2"
###################################################################
#XMPP section
###################################################################
#[xmpp]
#You can configure multiple servers "[xmpp.name]" or "[xmpp.name2]"
#In this example we use [xmpp.jabber]
#REQUIRED
#[xmpp.jabber]
#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"
#Enable to show users joins/parts from other bridges (only from irc-bridge at the moment)
#OPTIONAL (default false)
ShowJoinPart=false
#Your nick in the rooms
#REQUIRED
#Nick="xmppbot"
###################################################################
......@@ -84,64 +68,41 @@ RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
###################################################################
[mattermost]
#You can configure multiple servers "[mattermost.name]" or "[mattermost.name2]"
#In this example we use [mattermost.webserver]
#In this example we use [mattermost.work]
#REQUIRED
[mattermost.webserver]
[mattermost.warpzone]
#### Settings for webhook matterbridge.
#### These settings will not be used when useAPI is enabled
#Url is your incoming webhook url as specified in mattermost.
#See account settings - integrations - incoming webhooks on mattermost.
#REQUIRED (unless useAPI=true)
#URL="https://yourdomain/hooks/yourhookkey"
URL="{{ mattermost_hook }}"
#Address to listen on for outgoing webhook requests from mattermost.
#See account settings - integrations - outgoing webhooks on mattermost.
#This setting will not be used when using -plus switch which doesn't use
#webhooks
#REQUIRED (unless useAPI=true)
#BindAddress="0.0.0.0:9999"
BindAddress="0.0.0.0:9999"
#Icon that will be showed in mattermost.
#OPTIONAL
#IconURL="http://youricon.png"
#### Settings for matterbridge -plus
#### Thse settings will only be used when using the -plus switch.
#### Settings for using matterbridge API
#OPTIONAL
useAPI=true
#The mattermost hostname.
#REQUIRED (when useAPI=true)
Server="mattermost.warpzone.ms"
#Your team on mattermost.
#REQUIRED (when useAPI=true)
Team="warpzone"
#login/pass of your bot.
#Use a dedicated user for this and not your own!
#REQUIRED (when useAPI=true)
Login="matterbot"
Password="{{ mattermost_password }}"
#Enable this to make a http connection (instead of https) to your mattermost.
#OPTIONAL (default false)
NoTLS=false
#### Shared settings for matterbridge and -plus
#Enable to not verify the certificate on your mattermost server.
#e.g. when using selfsigned certificates
#OPTIONAL (default false)
SkipTLSVerify=true
#Enable to show IRC joins/parts in mattermost.
#OPTIONAL (default false)
ShowJoinPart=false
#how to format the list of IRC nicks when displayed in mattermost.
#Possible options are "table" and "plain"
#OPTIONAL (default plain)
NickFormatter="plain"
#How many nicks to list per row for formatters that support this.
#OPTIONAL (default 4)
NicksPerRow=4
#Whether to prefix messages from other bridges to mattermost with the sender's nick.
#Useful if username overrides for incoming webhooks isn't enabled on the
......@@ -151,146 +112,51 @@ ShowJoinPart=false
#OPTIONAL (default false)
PrefixMessagesWithNick=false
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge
#OPTIONAL (default {BRIDGE}-{NICK})
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
#Nicks you want to ignore.
#Messages from those users will not be sent to other bridges.
#OPTIONAL
IgnoreNicks="ircspammer1 ircspammer2"
#how to format the list of IRC nicks when displayed in mattermost.
#Possible options are "table" and "plain"
#OPTIONAL (default plain)
NickFormatter="plain"
#How many nicks to list per row for formatters that support this.
#OPTIONAL (default 4)
NicksPerRow=4
#Enable to show users joins/parts from other bridges (only from irc-bridge at the moment)
#OPTIONAL (default false)
ShowJoinPart=false
#Nicks you want to ignore. Messages from those users will not be bridged.
#OPTIONAL
IgnoreNicks="mmbot spammer2"
###################################################################
#Gitter section
#Best to make a dedicated gitter account for the bot.
#telegram section
###################################################################
[telegram]
#[gitter]
#You can configure multiple servers "[gitter.name]" or "[gitter.name2]"
#In this example we use [gitter.myproject]
#You can configure multiple servers "[telegram.name]" or "[telegram.name2]"
#In this example we use [telegram.secure]
#REQUIRED
#[gitter.myproject]
#Token to connect with Gitter API
#You can get your token by going to https://developer.gitter.im/docs/welcome and SIGN IN
[telegram.bot]
#Token to connect with telegram API
#See https://core.telegram.org/bots#6-botfather and https://www.linkedin.com/pulse/telegram-bots-beginners-marco-frau
#REQUIRED
#Token="Yourtokenhere"
Token="{{ telegram_token }}"
#Nicks you want to ignore. Messages of those users will not be bridged.
#OPTIONAL
#IgnoreNicks="spammer1 spammer2"
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge
#OPTIONAL (default {BRIDGE}-{NICK})
#RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
###################################################################
#slack section
###################################################################
#[slack]
#You can configure multiple servers "[slack.name]" or "[slack.name2]"
#In this example we use [slack.hobby]
#REQUIRED
#[slack.hobby]
#### Settings for webhook matterbridge.
#### These settings will not be used when useAPI is enabled
#Url is your incoming webhook url as specified in slack
#See account settings - integrations - incoming webhooks on slack
#REQUIRED (unless useAPI=true)
#URL="https://hooks.slack.com/services/yourhook"
#Address to listen on for outgoing webhook requests from slack
#See account settings - integrations - outgoing webhooks on slack
#This setting will not be used when useAPI is eanbled
#webhooks
#REQUIRED (unless useAPI=true)
#BindAddress="0.0.0.0:9999"
#Icon that will be showed in slack
#OPTIONAL
#IconURL="http://youricon.png"
#### Settings for using slack API
#Nicks you want to ignore.
#Messages from those users will not be sent to other bridges.
#OPTIONAL
#useAPI=false
#Token to connect with the Slack API
#REQUIRED (when useAPI=true)
#Token="yourslacktoken"
#### Shared settings for webhooks and API
#IgnoreNicks="spammer1 spammer2"
#Whether to prefix messages from other bridges to mattermost with the sender's nick.
#Useful if username overrides for incoming webhooks isn't enabled on the
#slack server. If you set PrefixMessagesWithNick to true, each message
#from bridge to Slack will by default be prefixed by "bridge-" + nick. You can,
#however, modify how the messages appear, by setting (and modifying) RemoteNickFormat
#Enable to show users joins/parts from other bridges (only from irc-bridge at the moment)
#OPTIONAL (default false)
#PrefixMessagesWithNick=false
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#OPTIONAL (default {BRIDGE}-{NICK})
#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge
#RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
#how to format the list of IRC nicks when displayed in slack
#Possible options are "table" and "plain"
#OPTIONAL (default plain)
#NickFormatter="plain"
#How many nicks to list per row for formatters that support this.
#OPTIONAL (default 4)
#NicksPerRow=4
ShowJoinPart=false
#Nicks you want to ignore. Messages from those users will not be bridged.
#OPTIONAL
#IgnoreNicks="mmbot spammer2"
###################################################################
#discord section
#General configuration
###################################################################
#[discord]
#You can configure multiple servers "[discord.name]" or "[discord.name2]"
#In this example we use [discord.game]
#REQUIRED
#[discord.game]
#Token to connect with Discord API
#You can get your token by following the instructions on
#https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token
#REQUIRED
#Token="Yourtokenhere"
#REQUIRED
#Guild="yourguildname"
#Nicks you want to ignore. Messages of those users will not be bridged.
#OPTIONAL
#IgnoreNicks="spammer1 spammer2"
#Settings here override specific settings for each protocol
[general]
#RemoteNickFormat defines how remote users appear on this bridge
#The string "{NICK}" (case sensitive) will be replaced by the actual nick / username.
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge
#OPTIONAL (default {BRIDGE}-{NICK})
#RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
#OPTIONAL (default empty)
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "
###################################################################
#Gateway configuration
......@@ -303,9 +169,9 @@ IgnoreNicks="mmbot spammer2"
#from [[gateway.in]] to.
#
#Most of the time [[gateway.in]] and [[gateway.out]] are the same if you
#want bidirectional bridging.
#want bidirectional bridging. You can then use [[gateway.inout]]
#
#REQUIRED
[[gateway]]
#OPTIONAL (not used for now)
name="gateway1"
......@@ -314,25 +180,39 @@ name="gateway1"
enable=true
#[[gateway.in]] specifies the account and channels we will receive messages from.
#The following example bridges between mattermost and irc
[[gateway.in]]
#[[gateway.out]] specifies the account and channels we will sent messages to.
#account specified above
#REQUIRED
account="irc.freenode"
#account="irc.freenode"
#channel to connect on that account
#How to specify them for the different bridges:
#
#irc - #channel (# is required)
#mattermost - channel (the channel name as seen in the URL, not the displayname)
#gitter - username/room
#xmpp - channel
#slack - channel (the channel name as seen in the URL, not the displayname)
#discord - channel (without the #)
# - ID:123456789 (where 123456789 is the channel ID)
# (https://github.com/42wim/matterbridge/issues/57)
#telegram - chatid (a large negative number, eg -123456789)
# see (https://www.linkedin.com/pulse/telegram-bots-beginners-marco-frau)
#hipchat - id_channel (see https://www.hipchat.com/account/xmpp for the correct channel)
#rocketchat - #channel (# is required)
#matrix - room internal ID (looks like !QJFqjsGJwmQzbuBfff:matrix.org)
#REQUIRED
channel="#warpzone"
#channel="#warpzone-test"
[[gateway.in]]
account="mattermost.webserver"
channel="Town Square"
[[gateway.inout]]
account="telegram.bot"
channel="-219678855"
[[gateway.out]]
account="irc.freenode"
channel="#warpzone"
[[gateway.out]]
account="mattermost.webserver"
channel="Town Square"
[[gateway.inout]]
account="mattermost.warpzone"
channel="town-square"
[[gateway.inout]]
account="irc.freenode"
channel="#warpzone-test"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment