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
|
{
"addons": {
"logger": {
"class": "logger.Logger",
"logroot": "/home/caretaker82/IRC"
},
"bouncer": {
"class": "bouncer.Bouncer",
"port": 16698,
"certfile": "cert.pem",
"keyfile": "key.pem",
"autoaway": "I'm off to see the wizard!"
},
"autoexec": {
"class": "autoexec.Autoexec"
}
},
"networks": {
"InsomniaIRC": {
"class": "irc.Connection",
"server": "irc.insomniairc.net",
"nick": "pyIRC",
"secure": true,
"addons": [
{
"addon": <addons.logger>,
"label": "InsomniaIRC"
},
{
"addon": <addons.bouncer>,
"label": "InsomniaIRC",
"passwd": "6b97ed68d14eb3f1aa959ce5d49c7dc612e1eb1dafd73b1e705847483fd6a6c809f2ceb4e8df6ff9984c6298ff0285cace6614bf8daa9f0070101b6c89899e22",
"translations": {},
"hidden": []
},
{
"addon": <addons.autoexec>,
"label": "InsomniaIRC",
"autojoin": [
"#chat"
],
"nsautojoin": [],
"operjoin": []
}
]
}
}
}
|