Had to add and \!owner and \!admin to conf.defaultCapabilities

This commit is contained in:
Jeremy Fincher 2003-04-21 03:04:40 +00:00
parent 96e2a67aa5
commit e1e6b974d6
1 changed files with 6 additions and 5 deletions

View File

@ -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'
###############################
###############################