-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json.sample
More file actions
59 lines (59 loc) · 1.24 KB
/
config.json.sample
File metadata and controls
59 lines (59 loc) · 1.24 KB
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
50
51
52
53
54
55
56
57
58
59
{
"servers": {
"irc.example.com": {
"nick": "MyBotNick",
"nickserv_password": "your_password",
"use_tls": false,
"random_nick": true,
"channels": ["#channel"],
"port": 6667,
"rewrite_to_ssend": ["#channel"]
},
"irc.buggyirc.net": {
"nick": "MyBotNick",
"use_tls": true,
"port": 13371,
"verify_ssl": false,
"also_join": {
"#channel_a": [
"#channel_a_chat"
]
}
}
},
"default_server_config": {
"nick": "dccbot",
"use_tls": true,
"random_nick": false
},
"ssend_map": {},
"default_download_path": "./downloads",
"allowed_mimetypes": [
"image/jpeg",
"image/png",
"video/x-matroska",
"video/x-msvideo",
"video/mp4",
"video/webm",
"application/zip",
"application/x-tar",
"audio/mpeg",
"audio/mp4",
"text/plain",
"application/gzip",
"application/x-rar"
],
"max_file_size": 8589934592,
"channel_idle_timeout": 10,
"server_idle_timeout": 300,
"resume_timeout": 30,
"transfer_list_timeout": 86400,
"auto_md5sum": true,
"incomplete_suffix": ".incomplete",
"allow_private_ips": false,
"http": {
"host": "0.0.0.0",
"port": 9999,
"socket": null
}
}