From e1e6b974d6241299c77e4778640a97646185c808 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 21 Apr 2003 03:04:40 +0000 Subject: [PATCH] Had to add and \!owner and \!admin to conf.defaultCapabilities --- src/conf.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/conf.py b/src/conf.py index d6d22446c..8c7a8853a 100644 --- a/src/conf.py +++ b/src/conf.py @@ -76,9 +76,10 @@ throttleTime = 1.0 allowEval = True ### -# defaultCapabilities: Capabilities allowed to everyone by default. +# defaultCapabilities: Capabilities allowed to everyone by default. You almost +# certainly want to have !owner and !admin in here. ### -defaultCapabilities = set() +defaultCapabilities = set(['!owner', '!admin']) ### # reply%s: Stock replies for various reasons. @@ -137,9 +138,9 @@ nickmods = ['%s^', '^%s^', '__%s__', '%s_', '%s__', '__%s', '^^%s^^', '{%s}', '[%s]', '][%s][', '}{%s}{', '}{}%s', '^_^%s', '%s^_^', '^_^%s^_^'] ### -# defaultAllow: does an IrcUser allow a command by default? +# defaultAllow: Are commands allowed by default? ### -defaultAllow = False +defaultAllow = True ### # defaultChannelAllow: does an IrcChannel allow a command by by default? @@ -176,7 +177,7 @@ detailedTracebacks = True # bot will be found. ### driverModule = 'asyncoreDrivers' -#driverModule = 'twistedDrivers' +driverModule = 'twistedDrivers' ############################### ###############################