# A2K 2.x configuration module
# (This is the default configuration shipped with A2K)
# WARNING: The Surgeon General has determined that taking IRC too
# seriously is dangerous to your health.
# The IRC server(s) (host and port) to connect to. This is a list,
# and can contain one or more sets of hosts or ports, e.g.
# server = [('irc.foo.com', 6667),('irc.bar.com', 6667)]
server = [('you.need.to.change.this', 6667)]
# The nickname to use:
nick = 'a2k'
# The name to use:
name = 'a2k'
# The channel to join:
channel = '#a2k'
# What modes to set there:
chanmodes = '+nst'
# Want to eat botsnacks? 1 = yes, 0 = no:
botsnacks = 0
# A password for remote commands via /msg:
password = 'you.need.to.change.this'
# The name of a file to save posted URLs in:
urllist = 'a2kurls.html'
# Number of seconds to wait after someone joins before giving them ops:
opdelay = 5
# Op list. Do not remove the following two lines:
import re
op = {}
# Add new entries below this line.
op['you.need.to.change.this'] = re.compile('sampleonly@example\.com')
|