-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
91 lines (91 loc) · 2.71 KB
/
config.example.json
File metadata and controls
91 lines (91 loc) · 2.71 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"oidentd_conf": "",
"networks": [
{
"enabled": true,
"network_key": "libera-main",
"server": "irc.libera.chat",
"port": 6697,
"use_tls": true,
"nick": "MyPythonBot",
"bind_ip": "",
"username": "pythonbot",
"realname": "Python IRC Bot",
"channels": ["#your-channel"],
"password": "",
"command_prefix": "!",
"language": "en",
"perform": [
"MODE {nick} +B"
],
"flood_protection_enabled": true,
"reconnect_delay_seconds": 30,
"raw_chat_logging_enabled": false,
"sasl_enabled": false,
"sasl_username": "",
"sasl_password": "",
"sasl_authzid": "",
"nick_protection_enabled": false,
"nick_protection_nick": "",
"nick_reclaim_interval_seconds": 60,
"nickserv_password": "",
"nickserv_identify_command": "PRIVMSG NickServ :IDENTIFY {password}",
"mondgesicht_url_enabled": false,
"mondgesicht_url": "https://example.invalid/mondgesicht?channel={channel_url}&lang=de&enabled=1"
},
{
"enabled": false,
"network_key": "oftc-main",
"server": "irc.oftc.net",
"port": 6697,
"use_tls": true,
"nick": "MyPythonBot2",
"bind_ip": "",
"username": "pythonbot",
"realname": "Python IRC Bot",
"channels": ["#another-channel"],
"password": "",
"command_prefix": "!",
"language": "en",
"perform": [
"MODE {nick} +B"
],
"flood_protection_enabled": true,
"reconnect_delay_seconds": 30,
"raw_chat_logging_enabled": false,
"sasl_enabled": false,
"sasl_username": "",
"sasl_password": "",
"sasl_authzid": "",
"nick_protection_enabled": false,
"nick_protection_nick": "",
"nick_reclaim_interval_seconds": 60,
"nickserv_password": "",
"nickserv_identify_command": "PRIVMSG NickServ :IDENTIFY {password}",
"mondgesicht_url_enabled": false,
"mondgesicht_url": "https://example.invalid/mondgesicht?channel={channel_url}&lang=de&enabled=1"
}
],
"mysql_host": "127.0.0.1",
"mysql_port": 3306,
"mysql_user": "root",
"mysql_password": "",
"mysql_database": "nullbot",
"weather_default_location": "",
"weather_appid": "<your-openweather-appid>",
"youtube_api_key": "",
"rss_feeds": {
"midiandmore": "https://www.midiandmore.net/Community/news-rss.jsp"
},
"rss_announce_channel": "",
"enabled_plugins": [],
"disabled_plugins": [],
"raw_chat_logging_enabled": false,
"flood_protection_enabled": true,
"url_timeout_seconds": 3.0,
"url_sniff_max_bytes": 65536,
"url_max_content_length_bytes": 2097152,
"flood_burst": 4,
"flood_window_seconds": 2.0,
"flood_min_interval_ms": 2000
}