mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-18 22:51:01 +01:00
Added a whole buttload of configuration variables.
This commit is contained in:
parent
24d191d5dc
commit
a7d0eb9829
35
src/conf.py
35
src/conf.py
@ -94,6 +94,13 @@ logTimestampFormat = '[%d-%b-%Y %H:%M:%S]'
|
|||||||
###
|
###
|
||||||
humanTimestampFormat = '%I:%M %p, %B %d, %Y'
|
humanTimestampFormat = '%I:%M %p, %B %d, %Y'
|
||||||
|
|
||||||
|
###
|
||||||
|
# externalIP: A string that is the external IP of the bot. If this is None,
|
||||||
|
# the bot will attempt to find out its IP dynamically (though
|
||||||
|
# sometimes this doesn't work.)
|
||||||
|
###
|
||||||
|
externalIP = None
|
||||||
|
|
||||||
###
|
###
|
||||||
# throttleTime: A floating point number of seconds to throttle queued messages.
|
# throttleTime: A floating point number of seconds to throttle queued messages.
|
||||||
# (i.e., messages will not be sent faster than once per
|
# (i.e., messages will not be sent faster than once per
|
||||||
@ -159,6 +166,19 @@ replyWhenNotAddressed = False
|
|||||||
###
|
###
|
||||||
requireRegistration = False
|
requireRegistration = False
|
||||||
|
|
||||||
|
###
|
||||||
|
# requireChannelCommandsToBeSentInChannel: Normally, you can send channel
|
||||||
|
# related commands in private or in
|
||||||
|
# another channel. Sometimes this
|
||||||
|
# can be confusing, though, if the
|
||||||
|
# command changes the behavior of
|
||||||
|
# the bot in the channel. Set this
|
||||||
|
# variable to True if you want to
|
||||||
|
# require such commands to be sent
|
||||||
|
# in the channel to which they apply.
|
||||||
|
###
|
||||||
|
requireChannelCommandsToBeSentInChannel = False
|
||||||
|
|
||||||
###
|
###
|
||||||
# followIdentificationThroughNickChanges: By default the bot will simply
|
# followIdentificationThroughNickChanges: By default the bot will simply
|
||||||
# unidentify someone when he changes
|
# unidentify someone when he changes
|
||||||
@ -194,12 +214,19 @@ defaultCapabilities = sets.Set(['-owner', '-admin', '-trusted'])
|
|||||||
###
|
###
|
||||||
# reply%s: Stock replies for various reasons.
|
# reply%s: Stock replies for various reasons.
|
||||||
###
|
###
|
||||||
replyError = 'An error has occurred and has been logged.'
|
replyError = 'An error has occurred and has been logged. ' \
|
||||||
replyNoCapability = 'You don\'t have the "%s" capability.'
|
'Please contact this bot\'s administrator for more information.'
|
||||||
|
replyNoCapability = 'You don\'t have the "%s" capability. If you think ' \
|
||||||
|
'that you should have this capability, be sure that ' \
|
||||||
|
'you are identified via the "whoami" command.'
|
||||||
replySuccess = 'The operation succeeded.'
|
replySuccess = 'The operation succeeded.'
|
||||||
replyIncorrectAuth = 'Your hostmasks don\'t match or your password is wrong.'
|
replyIncorrectAuth = 'Your hostmask doesn\'t match or your password is wrong.'
|
||||||
replyNoUser = 'I can\'t find that user in my database.'
|
replyNoUser = 'I can\'t find that user in my database.'
|
||||||
replyNotRegistered = 'You must be registered to use this command.'
|
replyNotRegistered = 'You must be registered to use this command. ' \
|
||||||
|
'If you are already registered, you must either ' \
|
||||||
|
'identify (using the identify command) or add a ' \
|
||||||
|
'hostmask matching your current hostmask (using ' \
|
||||||
|
'the addhostmask command).'
|
||||||
replyInvalidArgument = 'I can\'t send \\r, \\n, or \\0 (\\x00).'
|
replyInvalidArgument = 'I can\'t send \\r, \\n, or \\0 (\\x00).'
|
||||||
replyRequiresPrivacy = 'That can\'t be done in a channel.'
|
replyRequiresPrivacy = 'That can\'t be done in a channel.'
|
||||||
replyEvalNotAllowed = 'You must enable conf.allowEval for that to work.'
|
replyEvalNotAllowed = 'You must enable conf.allowEval for that to work.'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user