summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorjason2012-07-21 14:47:11 -0600
committerjason2012-07-21 14:47:11 -0600
commitd9704befb3ab905cd0f7b88fee2fbd4bcf9edf1e (patch)
tree9c038e680730e69cc74eaa92f6946f7accf99775 /settings.py
parent77a4c5bf530a45a7be5bbeb435916f8997d83ecc (diff)
downloadwarmachine-d9704befb3ab905cd0f7b88fee2fbd4bcf9edf1e.tar.gz
warmachine-d9704befb3ab905cd0f7b88fee2fbd4bcf9edf1e.zip
Added a nickserv plugin.
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index 947b5bb..6591f19 100644
--- a/settings.py
+++ b/settings.py
@@ -4,6 +4,9 @@
4# choose the nickname for you bot. 4# choose the nickname for you bot.
5NICKNAME = 'warmachine' 5NICKNAME = 'warmachine'
6 6
7# (optional) Only for servers that have nickserv.
8NICKSERV_PASSWORD =''
9
7SERVER = 'irc.freenode.org' 10SERVER = 'irc.freenode.org'
8PORT = 6667 11PORT = 6667
9IDENT = 'warmachine' 12IDENT = 'warmachine'
@@ -12,7 +15,11 @@ CHANNELS = ('#warmachine-dev',)
12 15
13ADMINS = ('com4',) 16ADMINS = ('com4',)
14 17
18ACTIONS = (
19 'wmd.actions.nickserv.IdentWithNickserv',
20)
21
15try: 22try:
16 from local_settings.py import * 23 from local_settings import *
17except ImportError: 24except ImportError:
18 pass \ No newline at end of file 25 pass \ No newline at end of file