blob: 965df1ebb1ec79c37754c431b1553ebc36576425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Config = {
:server => {
:host => "irc.freenode.net",
:port => 6667,
:realname => "repost",
},
:client => {
:nick => "repost",
:channels => ["#repost-test"]
},
# list of ignored things, full ("==") match, not regexes
# for example:
# ["ood!~ood@azathoth.bytesexual.net", "moonspeak!mun@hackerspace.pl", "willikins!nobody@gentoo/bot/Willikins"]
:ignore => [],
# Space separated list of plugin names
:plugins => %w()
}
|