-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-dist.json
More file actions
37 lines (37 loc) · 852 Bytes
/
config-dist.json
File metadata and controls
37 lines (37 loc) · 852 Bytes
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
{
"channels": [
"#example"
],
"server": "irc.example.net",
"userName": "examplebot",
"realName": "Example IRC Bot",
"port": 6697,
"debug": false,
"showErrors": false,
"autoRejoin": true,
"autoConnect": false,
"secure": true,
"selfSigned": false,
"certExpired": false,
"floodProtection": true,
"floodProtectionDelay": 1000,
"sasl": false,
"commandPrefix": "#",
"bridges": {
"discord": {
"enabled": false,
"ircNicks": ["ExampleBridgeUser"],
"pattern": "^<([^>]+)>\\s+(.+)$",
"auth": {
"enabled": false,
"lookupUrl": "https://example.com/resolve-user-id",
"method": "POST",
"timeoutMs": 3000,
"headerName": "x-example-secret",
"headerValue": "change-me",
"cacheTtlMs": 300000,
"failureCacheTtlMs": 30000
}
}
}
}