summaryrefslogtreecommitdiffstats
path: root/settings.py
blob: f511ef077c7ef41de07ba31770b043c8ce2eb496 (plain) (blame)
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
# warmachine
#

# choose the nickname for you bot.
NICKNAME = 'warmachine'

# (optional) Only for servers that have nickserv.
NICKSERV_PASSWORD =''

SERVER = 'irc.freenode.org'
PORT = "+6667"
IDENT = 'warmachine'

CHANNELS = ('#warmachine-dev',)

ADMINS = ('com4',)

DB_PATH = "warmachine.db"

ACTIONS = (
    'wmd.actions.passive.nickserv.IdentWithNickserv',
    'wmd.actions.passive.pong.RespondToPing',
    'wmd.actions.passive.topic_archive.TopicArchive',
    'wmd.actions.passive.rejoin_on_kick.RejoinOnKick',
    'wmd.actions.modules.ReloadModule',
    'wmd.actions.modules.LoadModule',
    'wmd.actions.modules.ListModules',
    'wmd.actions.modules.UnloadModule',
    'wmd.actions.google.GoogleSearch',
)

try:
    from local_settings import *
except ImportError:
    pass