-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json.example
More file actions
49 lines (48 loc) · 1007 Bytes
/
config.json.example
File metadata and controls
49 lines (48 loc) · 1007 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"server": {
"host": "irc.euirc.org",
"port": 6697,
"ssl": true,
"encoding": "utf-8",
"user": "yuibot",
"password": "hurr",
"nick": "yuibot",
"realname": "abbot",
"timeout": 300
},
"sqlitePath": "yui.db",
"admins": {
"yourNickHere": "andYourPassword"
},
"pluginDir": "plugins",
"commandPrefixes": ["!", "."],
"pluginAutoLoad": [
"autojoin",
"admin",
"help",
"eliza",
"markov",
"quotes",
"ratelimit",
"remind",
"slogan",
"urbandict",
"url",
"wiki"
],
"autojoin": [
"#numberwang"
],
"userModes": "+B",
"ratelimit": {
"timeframe": 60,
"messages": 5,
"ignoreMinutes": 5
},
"url":{
"httpUserAgent": "Mozilla/5.0",
"socksProxyHost": "localhost",
"socksProxyPort": 9050,
"socksProxyRegex": ".*\\.onion$"
}
}