diff options
author | Brian Sherson <caretaker82@euclid.shersonb.net> | 2014-03-11 18:48:59 -0700 |
---|---|---|
committer | Brian Sherson <caretaker82@euclid.shersonb.net> | 2014-03-11 18:48:59 -0700 |
commit | 0b695d73168af6a8444e1c0a0f4e6b0f85506fc4 (patch) | |
tree | 8d225ac56cfb345b81e70e7f4c27df43d1ac4658 /irc.conf | |
parent | 0ec6553cffaa4bf115efddf815caa7cea56527d7 (diff) |
Major changes
Diffstat (limited to 'irc.conf')
-rw-r--r-- | irc.conf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/irc.conf b/irc.conf new file mode 100644 index 0000000..498ce86 --- /dev/null +++ b/irc.conf @@ -0,0 +1,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": [] + } + ] + } + } +}
\ No newline at end of file |