forked from 42wim/matterircd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matterircd.toml.example
45 lines (34 loc) · 1.47 KB
/
matterircd.toml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#interface:port to bind to. (default "127.0.0.1:6667")
Bind = "127.0.0.1:6667"
#enable debug logging (default false)
Debug = false
#specify default mattermost server/instance (default "")
DefaultServer = "chat.mycompany.com"
#specify default mattermost team (default "")
DefaultTeam = "mycompany"
#use http connection to mattermost (default false)
Insecure = false
#an array of channels that won't be joined on IRC.
#Messages that get sent to unjoined channels (but you're joined on mattermost) will
#get sent to the &messages channel.
#You can still /JOIN exclude channels.
#default ""
JoinExclude = ["#town-square","#boringchannel"]
#an array of channels that only will be joined on IRC.
#If it's empty, it means all channels get joined (except those defined in JoinExclude)
#Messages that get sent to unjoined channels (but you're joined on mattermost) will
#get sent to the &messages channel.
#default ""
JoinInclude = ["#devops"]
#PartFake: a bool that defines if you do a /LEAVE or /PART on IRC it will also
#actually leave the channel on mattermost.
#Default false
PartFake = true
#skip verification of mattermost certificate chain and hostname (default false)
SkipTLSVerify = false
#interface:port to bind to. (e.g 127.0.0.1:6697) (deault "")
TLSBind = "127.0.0.1:6697"
#directory to look for key.pem and cert.pem. (default ".")
TLSDir = "/etc/pki/tls/matermost/"
#only allow connection to specified mattermost server/instances. Space delimited (default "")
Restrict = "chat.mycompany.com"