-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py.sample
41 lines (37 loc) · 916 Bytes
/
config.py.sample
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
altnicks = ["NeuBot_", "NeuBot__"]
EFNet = {
"ircnet": "EFNet",
"nick": "NeuBot",
"altnicks": altnicks,
"name": "The Neuest bot",
"ident": "neubot",
# List of servers that can be used for this network
# Format is: (hostname, port, use_ssl, use_ipv6)
"servers": [
("localhost", 6667, False, False),
("wendy.local", 6667, False, False),
],
# List of channels to join
# Format is: (channel_name, password)
"channels": [
("#test", None),
("#test2", None),
]
}
Bot = {
"ircnets": [EFNet],
"log.level": "DEBUGL3",
"datastore": "yserial://data/store.db",
"masters": [
"*!jim@localhost",
],
"coreplugins": [
"aclcommands",
"corecommands",
],
"plugins": [
"urlcatcher",
]
}