### # Determines the bot's default nick. # # Default value: supybot ### supybot.nick: alipi_not ### # Determines what alternative nicks will be used if the primary nick # (supybot.nick) isn't available. A %s in this nick is replaced by the # value of supybot.nick when used. If no alternates are given, or if all # are used, the supybot.nick will be perturbed appropriately until an # unused nick is found. # # Default value: %s` %s_ ### supybot.nick.alternates: %s` %s_ ### # Determines the bot's ident string, if the server doesn't provide one # by default. # # Default value: limnoria ### supybot.ident: supybot ### # Determines the user the bot sends to the server. A standard user using # the current version of the bot will be generated if this is left # empty. # # Default value: ### supybot.user: y ### # Determines what networks the bot will connect to. # # Default value: ### supybot.networks: freenode ### # Determines what password will be used on freenode. Yes, we know that # technically passwords are server-specific and not network-specific, # but this is the best we can do right now. # # Default value: ### supybot.networks.freenode.password: ### # Determines what servers the bot will connect to for freenode. Each # will be tried in order, wrapping back to the first when the cycle is # completed. # # Default value: ### supybot.networks.freenode.servers: irc.freenode.net:6667 ### # Determines what channels the bot will join only on freenode. # # Default value: ### supybot.networks.freenode.channels: #alipi #amclug #pantoto-mongo ### # Determines what key (if any) will be used to join the channel. # # Default value: ### supybot.networks.freenode.channels.key: ### # Determines whether the bot will attempt to connect with SSL sockets to # freenode. # # Default value: False ### supybot.networks.freenode.ssl: False ### # Determines how timestamps printed for human reading should be # formatted. Refer to the Python documentation for the time module to # see valid formatting characters for time formats. # # Default value: %I:%M %p, %B %d, %Y ### supybot.reply.format.time: %I:%M %p, %B %d, %Y ### # Determines whether elapsed times will be given as "1 day, 2 hours, 3 # minutes, and 15 seconds" or as "1d 2h 3m 15s". # # Default value: False ### supybot.reply.format.time.elapsed.short: False ### # Determines the absolute maximum length of the bot's reply -- no reply # will be passed through the bot with a length greater than this. # # Default value: 131072 ### supybot.reply.maximumLength: 131072 ### # Determines whether the bot will break up long messages into chunks and # allow users to use the 'more' command to get the remaining chunks. # # Default value: True ### supybot.reply.mores: True ### # Determines what the maximum number of chunks (for use with the 'more' # command) will be. # # Default value: 50 ### supybot.reply.mores.maximum: 50 ### # Determines how long individual chunks will be. If set to 0, uses our # super-tweaked, get-the-most-out-of-an-individual-message default. # # Default value: 0 ### supybot.reply.mores.length: 0 ### # Determines how many mores will be sent instantly (i.e., without the # use of the more command, immediately when they are formed). Defaults # to 1, which means that a more command will be required for all but the # first chunk. # # Default value: 1 ### supybot.reply.mores.instant: 1 ### # Determines whether the bot will send multi-message replies in a single # message or in multiple messages. For safety purposes (so the bot is # less likely to flood) it will normally send everything in a single # message, using mores if necessary. # # Default value: True ### supybot.reply.oneToOne: True ### # Determines whether the bot will reply with an error message when it is # addressed but not given a valid command. If this value is False, the # bot will remain silent, as long as no other plugins override the # normal behavior. # # Default value: True ### supybot.reply.whenNotCommand: False ### # Determines whether error messages that result from bugs in the bot # will show a detailed error message (the uncaught exception) or a # generic error message. # # Default value: False ### supybot.reply.error.detailed: False ### # Determines whether the bot will send error messages to users in # private. You might want to do this in order to keep channel traffic to # minimum. This can be used in combination with # supybot.reply.error.withNotice. # # Default value: False ### supybot.reply.error.inPrivate: False ### # Determines whether the bot will send error messages to users via # NOTICE instead of PRIVMSG. You might want to do this so users can # ignore NOTICEs from the bot and not have to see error messages; or you # might want to use it in combination with supybot.reply.errorInPrivate # so private errors don't open a query window in most IRC clients. # # Default value: False ### supybot.reply.error.withNotice: False ### # Determines whether the bot will send an error message to users who # attempt to call a command for which they do not have the necessary # capability. You may wish to make this True if you don't want users to # understand the underlying security system preventing them from running # certain commands. # # Default value: False ### supybot.reply.error.noCapability: False ### # Determines whether the bot will reply privatelywhen replying in a # channel, rather than replying to the whole channel. # # Default value: False ### supybot.reply.inPrivate: False ### # Determines whether the bot will reply with a notice when replying in a # channel, rather than replying with a privmsg as normal. # # Default value: False ### supybot.reply.withNotice: False ### # Determines whether the bot will reply with a notice when it is sending # a private message, in order not to open a /query window in clients. # This can be overridden by individual users via the user configuration # variable reply.withNoticeWhenPrivate. # # Default value: False ### supybot.reply.withNoticeWhenPrivate: False ### # Determines whether the bot will always prefix theuser's nick to its # reply to that user's command. # # Default value: True ### supybot.reply.withNickPrefix: True ### # Determines whether the bot should attempt to reply to all messages # even if they don't address it (either via its nick or a prefix # character). If you set this to True, you almost certainly want to set # supybot.reply.whenNotCommand to False. # # Default value: False ### supybot.reply.whenNotAddressed: False ### # Determines whether the bot will allow you to send channel-related # commands outside of that channel. Sometimes people find it confusing # if a channel-related command (like Filter.outfilter) changes the # behavior of the channel but was sent outside the channel itself. # # Default value: False ### supybot.reply.requireChannelCommandsToBeSentInChannel: False ### # Supybot normally replies with the full help whenever a user misuses a # command. If this value is set to True, the bot will only reply with # the syntax of the command (the first line of the help) rather than the # full help. # # Default value: False ### supybot.reply.showSimpleSyntax: False ### # Determines what prefix characters the bot will reply to. A prefix # character is a single character that the bot will use to determine # what messages are addressed to it; when there are no prefix characters # set, it just uses its nick. Each character in this string is # interpreted individually; you can have multiple prefix chars # simultaneously, and if any one of them is used as a prefix the bot # will assume it is being addressed. # # Default value: ### supybot.reply.whenAddressedBy.chars: @,, ### # Determines what strings the bot will reply to when they are at the # beginning of the message. Whereas prefix.chars can only be one # character (although there can be many of them), this variable is a # space-separated list of strings, so you can set something like '@@ ??' # and the bot will reply when a message is prefixed by either @@ or ??. # # Default value: ### supybot.reply.whenAddressedBy.strings: ;; ### # Determines whether the bot will reply when people address it by its # nick, rather than with a prefix character. # # Default value: True ### supybot.reply.whenAddressedBy.nick: True ### # Determines whether the bot will reply when people address it by its # nick at the end of the message, rather than at the beginning. # # Default value: False ### supybot.reply.whenAddressedBy.nick.atEnd: False ### # Determines what extra nicks the bot will always respond to when # addressed by, even if its current nick is something else. # # Default value: ### supybot.reply.whenAddressedBy.nicks: ### # Determines whether the bot will unidentify someone when that person # changes his or her nick. Setting this to True will cause the bot to # track such changes. It defaults to False for a little greater # security. # # Default value: False ### supybot.followIdentificationThroughNickChanges: False ### # Determines whether the bot will always join a channel when it's # invited. If this value is False, the bot will only join a channel if # the user inviting it has the 'admin' capability (or if it's explicitly # told to join the channel using the Admin.join command) # # Default value: False ### supybot.alwaysJoinOnInvite: False ### # Determines what message the bot replies with when a command succeeded. # If this configuration variable is empty, no success message will be # sent. ### supybot.replies.success: The operation succeeded. ### # Determines what error message the bot gives when it wants to be # ambiguous. ### supybot.replies.error: An error has occurred and has been logged. Please\ contact this bot\'s administrator for more\ information. ### # Determines what error message the bot gives to the owner when it wants # to be ambiguous. ### supybot.replies.errorOwner: An error has occurred and has been logged. Check\ the logs for more informations. ### # Determines what message the bot replies with when someone tries to use # a command that requires being identified or having a password and # neither credential is correct. ### supybot.replies.incorrectAuthentication: Your hostmask doesn\'t match or\ your password is wrong. ### # Determines what error message the bot replies with when someone tries # to accessing some information on a user the bot doesn't know about. ### supybot.replies.noUser: I can\'t find %s in my user database. If you didn\'t\ give a user name, then I might not know what your\ user is, and you\'ll need to identify before this\ command might work. ### # Determines what error message the bot replies with when someone tries # to do something that requires them to be registered but they're not # currently recognized. ### supybot.replies.notRegistered: 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 "hostmask add" command). ### # Determines what error message is given when the bot is telling someone # they aren't cool enough to use the command they tried to use. ### supybot.replies.noCapability: You don\'t have the %s capability. If you\ think that you should have this capability, be\ sure that you are identified before trying\ again. The \'whoami\' command can tell you if\ you\'re identified. ### # Determines what generic error message is given when the bot is telling # someone that they aren't cool enough to use the command they tried to # use, and the author of the code calling errorNoCapability didn't # provide an explicit capability for whatever reason. ### supybot.replies.genericNoCapability: You\'re missing some capability you\ need. This could be because you\ actually possess the anti-capability\ for the capability that\'s required of\ you, or because the channel provides\ that anti-capability by default, or\ because the global capabilities include\ that anti-capability. Or, it could be\ because the channel or\ supybot.capabilities.default is set to\ False, meaning that no commands are\ allowed unless explicitly in your\ capabilities. Either way, you can\'t do\ what you want to do. ### # Determines what error messages the bot sends to people who try to do # things in a channel that really should be done in private. ### supybot.replies.requiresPrivacy: That operation cannot be done in a channel. ### # Determines what message the bot sends when it thinks you've # encountered a bug that the developers don't know about. ### supybot.replies.possibleBug: This may be a bug. If you think it is, please\ file a bug report at . ### # A floating point number of seconds to throttle snarfed URLs, in order # to prevent loops between two bots snarfing the same URLs and having # the snarfed URL in the output of the snarf message. # # Default value: 10.0 ### supybot.snarfThrottle: 10.0 ### # Determines the number of seconds between running the upkeep function # that flushes (commits) open databases, collects garbage, and records # some useful statistics at the debugging level. # # Default value: 3600 ### supybot.upkeepInterval: 3600 ### # Determines whether the bot will periodically flush data and # configuration files to disk. Generally, the only time you'll want to # set this to False is when you want to modify those configuration files # by hand and don't want the bot to flush its current version over your # modifications. Do note that if you change this to False inside the # bot, your changes won't be flushed. To make this change permanent, you # must edit the registry yourself. # # Default value: True ### supybot.flush: True ### # Determines what characters are valid for quoting arguments to commands # in order to prevent them from being tokenized. # # Default value: " ### supybot.commands.quotes: " ### # Determines whether the bot will allow nested commands, which rule. You # definitely should keep this on. # # Default value: True ### supybot.commands.nested: True ### # Determines what the maximum number of nested commands will be; users # will receive an error if they attempt commands more nested than this. # # Default value: 10 ### supybot.commands.nested.maximum: 10 ### # Supybot allows you to specify what brackets are used for your nested # commands. Valid sets of brackets include [], <>, and {} (). [] has # strong historical motivation, as well as being the brackets that don't # require shift. <> or () might be slightly superior because they cannot # occur in a nick. If this string is empty, nested commands will not be # allowed in this channel. # # Default value: [] ### supybot.commands.nested.brackets: [] ### # Supybot allows nested commands. Enabling this option will allow nested # commands with a syntax similar to UNIX pipes, for example: 'bot: foo | # bar'. # # Default value: False ### supybot.commands.nested.pipeSyntax: False ### # Determines what commands have default plugins set, and which plugins # are set to be the default for each of those commands. ### supybot.commands.defaultPlugins.addcapability: Admin supybot.commands.defaultPlugins.capabilities: User supybot.commands.defaultPlugins.disable: Owner supybot.commands.defaultPlugins.enable: Owner supybot.commands.defaultPlugins.help: Misc supybot.commands.defaultPlugins.ignore: Admin ### # Determines what plugins automatically get precedence over all other # plugins when selecting a default plugin for a command. By default, # this includes the standard loaded plugins. You probably shouldn't # change this if you don't know what you're doing; if you do know what # you're doing, then also know that this set is case-sensitive. # # Default value: Plugin Admin Misc User Owner Config Channel ### supybot.commands.defaultPlugins.importantPlugins: Plugin Admin Misc User Owner Config Channel supybot.commands.defaultPlugins.list: Misc supybot.commands.defaultPlugins.reload: Owner supybot.commands.defaultPlugins.removecapability: Admin supybot.commands.defaultPlugins.unignore: Admin ### # Determines what commands are currently disabled. Such commands will # not appear in command lists, etc. They will appear not even to exist. # # Default value: ### supybot.commands.disabled: ### # Determines whether the bot will defend itself against command- # flooding. # # Default value: True ### supybot.abuse.flood.command: True ### # Determines how many commands users are allowed per minute. If a user # sends more than this many commands in any 60 second period, he or she # will be ignored for supybot.abuse.flood.command.punishment seconds. # # Default value: 12 ### supybot.abuse.flood.command.maximum: 12 ### # Determines how many seconds the bot will ignore users who flood it # with commands. # # Default value: 300 ### supybot.abuse.flood.command.punishment: 300 ### # Determines whether the bot will defend itself against invalid command- # flooding. # # Default value: True ### supybot.abuse.flood.command.invalid: True ### # Determines how many invalid commands users are allowed per minute. If # a user sends more than this many invalid commands in any 60 second # period, he or she will be ignored for # supybot.abuse.flood.command.invalid.punishment seconds. Typically, # this value is lower than supybot.abuse.flood.command.maximum, since # it's far less likely (and far more annoying) for users to flood with # invalid commands than for them to flood with valid commands. # # Default value: 5 ### supybot.abuse.flood.command.invalid.maximum: 5 ### # Determines how many seconds the bot will ignore users who flood it # with invalid commands. Typically, this value is higher than # supybot.abuse.flood.command.punishment, since it's far less likely # (and far more annoying) for users to flood with invalid commands than # for them to flood with valid commands. # # Default value: 600 ### supybot.abuse.flood.command.invalid.punishment: 600 ### # Determines whether the bot will notify people that they're being # ignored for invalid command flooding. # # Default value: True ### supybot.abuse.flood.command.invalid.notify: True ### # Determines the default length of time a driver should block waiting # for input. # # Default value: 1.0 ### supybot.drivers.poll: 1.0 ### # Determines what driver module the bot will use. Socket, a simple # driver based on timeout sockets, is used by default because it's # simple and stable. Twisted is very stable and simple, and if you've # got Twisted installed, is probably your best bet. # # Default value: default ### supybot.drivers.module: default ### # Determines the maximum time the bot will wait before attempting to # reconnect to an IRC server. The bot may, of course, reconnect earlier # if possible. # # Default value: 300.0 ### supybot.drivers.maxReconnectWait: 300.0 ### # Determines what directory configuration data is put into. # # Default value: conf ### supybot.directories.conf: /home/arvind/mybot/conf ### # Determines what directory data is put into. # # Default value: data ### supybot.directories.data: /home/arvind/mybot/data ### # Determines what directory temporary files are put into. # # Default value: tmp ### supybot.directories.data.tmp: /home/arvind/mybot/data/tmp ### # Determines what directory backup data is put into. # # Default value: backup ### supybot.directories.backup: /home/arvind/mybot/backup ### # Determines what directories the bot will look for plugins in. Accepts # a comma-separated list of strings. This means that to add another # directory, you can nest the former value and add a new one. E.g. you # can say: bot: 'config supybot.directories.plugins [config # supybot.directories.plugins], newPluginDirectory'. # # Default value: ### supybot.directories.plugins: /home/arvind/mybot/plugins/ ### # Determines what directory the bot will store its logfiles in. # # Default value: logs ### supybot.directories.log: /home/arvind/mybot/logs ### # Determines what plugins will be loaded. # # Default value: ### supybot.plugins: Web Pysandbox Network Lart Wikipedia sandbox Dict Factoids Config SupySandbox Channel pysandbox String Quote Unix Utilities Admin PluginDownloader MessageParser Services Supysandbox User BadWords Plugin AutoMode Later Alias Prasie Games Karma Praise Seen Google Qoute Math Conditional Misc Sandbox Topic prasie praise Owner Encyclopedia Twitter RSS ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Admin: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Admin.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Alias: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Alias.public: True supybot.plugins.Alias.aliases.histsearch: last --from [echo $nick] --regexp "/^(?!s\\/).*$1.*/@1" --in [echo $channel] supybot.plugins.Alias.aliases.histsearch.locked: False supybot.plugins.Alias.aliases.ctell: echo $1: [$*] supybot.plugins.Alias.aliases.ctell.locked: False supybot.plugins.Alias.aliases.m: more $* supybot.plugins.Alias.aliases.m.locked: False supybot.plugins.Alias.aliases.messageparser: mp $* supybot.plugins.Alias.aliases.messageparser.locked: False supybot.plugins.Alias.aliases.wp: google lucky --snippet site:en.wikipedia.org $* supybot.plugins.Alias.aliases.wp.locked: False ### # Determines whether this plugin is loaded by default. ### supybot.plugins.AutoMode: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.AutoMode.public: True ### # Determines whether this plugin is enabled. # # Default value: True ### supybot.plugins.AutoMode.enable: True ### # Determines whether this plugin will automode owners even if they don't # have op/halfop/voice/whatever capability. # # Default value: True ### supybot.plugins.AutoMode.owner: True ### # Determines whether the bot will "fall through" to halfop/voicing when # auto-opping is turned off but auto-halfopping/voicing are turned on. # # Default value: False ### supybot.plugins.AutoMode.fallthrough: False ### # Determines whether the bot will automatically op people with the # ,op capability when they join the channel. # # Default value: True ### supybot.plugins.AutoMode.op: True ### # Determines whether the bot will automatically halfop people with the # ,halfop capability when they join the channel. # # Default value: True ### supybot.plugins.AutoMode.halfop: True ### # Determines whether the bot will automatically voice people with the # ,voice capability when they join the channel. # # Default value: True ### supybot.plugins.AutoMode.voice: True ### # Determines whether the bot will automatically ban people who join the # channel and are on the banlist. # # Default value: True ### supybot.plugins.AutoMode.ban: True ### # Determines how many seconds the bot will automatically ban a person # when banning. # # Default value: 86400 ### supybot.plugins.AutoMode.ban.period: 86400 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.BadWords: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.BadWords.public: True ### # Determines what words are considered to be 'bad' so the bot won't say # them. # # Default value: ### supybot.plugins.BadWords.words: Windows windows Microsoft microsoft ### # Determines whether the bot will require bad words to be independent # words, or whether it will censor them within other words. For # instance, if 'darn' is a bad word, then if this is true, 'darn' will # be censored, but 'darnit' will not. You probably want this to be # false. After changing this setting, the BadWords regexp needs to be # regenerated by adding/removing a word to the list, or reloading the # plugin. # # Default value: False ### supybot.plugins.BadWords.requireWordBoundaries: False ### # Determines what characters will replace bad words; a chunk of these # characters matching the size of the replaced bad word will be used to # replace the bad words you've configured. # # Default value: !@#& ### supybot.plugins.BadWords.nastyChars: !@#& ### # Determines the manner in which bad words will be replaced. # 'nastyCharacters' (the default) will replace a bad word with the same # number of 'nasty characters' (like those used in comic books; # configurable by supybot.plugins.BadWords.nastyChars). 'simple' will # replace a bad word with a simple strings (regardless of the length of # the bad word); this string is configurable via # supybot.plugins.BadWords.simpleReplacement. # # Default value: nastyCharacters ### supybot.plugins.BadWords.replaceMethod: nastyCharacters ### # Determines what word will replace bad words if the replacement method # is 'simple'. # # Default value: [CENSORED] ### supybot.plugins.BadWords.simpleReplacement: [CENSORED] ### # Determines whether the bot will strip formatting characters from # messages before it checks them for bad words. If this is False, it # will be relatively trivial to circumvent this plugin's filtering. If # it's True, however, it will interact poorly with other plugins that do # coloring or bolding of text. # # Default value: True ### supybot.plugins.BadWords.stripFormatting: True ### # Determines whether the bot will kick people with a warning when they # use bad words. # # Default value: False ### supybot.plugins.BadWords.kick: False ### # Determines the kick message used by the bot when kicking users for # saying bad words. ### supybot.plugins.BadWords.kick.message: You have been kicked for using a word\ prohibited in the presence of this\ bot. Please use more appropriate\ language in the future. ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Channel: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Channel.public: True ### # Determines whether the bot will always try to rejoin a channel # whenever it's kicked from the channel. # # Default value: True ### supybot.plugins.Channel.alwaysRejoin: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Conditional: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Conditional.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Config: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Config.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Dict: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Dict.public: True ### # Determines what server the bot will retrieve definitions from. # # Default value: dict.org ### supybot.plugins.Dict.server: dict.org ### # Determines the default dictionary the bot will ask for definitions in. # If this value is '*' (without the quotes) the bot will use all # dictionaries to define words. # # Default value: ### supybot.plugins.Dict.default: ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Encyclopedia: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Encyclopedia.public: True ### # Enable Encyclopedia # # Default value: True ### supybot.plugins.Encyclopedia.enabled: True ### # Name of database to use # # Default value: ubuntu ### supybot.plugins.Encyclopedia.database: facts supybot.plugins.Encyclopedia.database.#amclug: amclug ### # Relay channel for unauthorized edits # # Default value: #ubuntu-ops ### supybot.plugins.Encyclopedia.relaychannel: #amclug ### # Channels where unauthorised edits are allowed. # # Default value: #ubuntu-ops ### supybot.plugins.Encyclopedia.editchannel: #ubuntu-ops ### # Reply when factoid isn't found # # Default value: Factoid %s not found ### supybot.plugins.Encyclopedia.notfoundmsg: Factoid %s not found ### # Prefix character for factoid display/editing # # Default value: ! ### supybot.plugins.Encyclopedia.prefixchar: ! ### # Path to dir containing factoid databases # # Default value: /home/arvind/mybot/data ### supybot.plugins.Encyclopedia.datadir: /home/arvind/mybot/data/#amclug ### # factoid name(s) used for alerts # # Default value: ops op kops calltheops ### supybot.plugins.Encyclopedia.alert: ops op kops calltheops ### # Remote location of the master database # # Default value: http://ubottu.com/ubuntu.db ### supybot.plugins.Encyclopedia.remotedb: http://ubottu.com/ubuntu.db ### # factoid name(s) to ignore # # Default value: find info ### supybot.plugins.Encyclopedia.ignores: find info ### # If set to True, send notfoundmsg in private rather than in the channel # # Default value: False ### supybot.plugins.Encyclopedia.privateNotFound: False ### # If True, factoids in kick's reason will be sent to the user in private # # Default value: False ### supybot.plugins.Encyclopedia.forcedFactoid: False ### # Current stable release # # Default value: Lucid ### supybot.plugins.Encyclopedia.curStable: Lucid ### # Current stable release # # Default value: Lucid Lynx ### supybot.plugins.Encyclopedia.curStableLong: Lucid Lynx ### # Current stable release # # Default value: 10.04 ### supybot.plugins.Encyclopedia.curStableNum: 10.04 ### # Current development release # # Default value: Maverick ### supybot.plugins.Encyclopedia.curDevel: Maverick ### # Current development release # # Default value: Maverick Meerkat ### supybot.plugins.Encyclopedia.curDevelLong: Maverick Meerkat ### # Current development release # # Default value: 10.10 ### supybot.plugins.Encyclopedia.curDevelNum: 10.10 ### # Current LTS release # # Default value: Lucid ### supybot.plugins.Encyclopedia.curLTS: Lucid ### # Current LTS release # # Default value: Lucid Lynx ### supybot.plugins.Encyclopedia.curLTSLong: Lucid Lynx ### # Current LTS release # # Default value: 10.04 ### supybot.plugins.Encyclopedia.curLTSNum: 10.04 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Factoids: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Factoids.public: True ### # Determines what separator must be used in the learn command. Defaults # to 'as' -- learn as . Users might feel more comfortable # with 'is' or something else, so it's configurable. # # Default value: as ### supybot.plugins.Factoids.learnSeparator: as ### # Determines whether the bot will reply with the single matching factoid # if only one factoid matches when using the search command. # # Default value: True ### supybot.plugins.Factoids.showFactoidIfOnlyOneMatch: True ### # Determines whether the bot will reply to invalid commands by searching # for a factoid; basically making the whatis unnecessary when you want # all factoids for a given key. # # Default value: True ### supybot.plugins.Factoids.replyWhenInvalidCommand: True ### # If you try to look up a nonexistent factoid, this setting make the bot # try to find some possible matching keys through several approximate # matching algorithms and return a list of matching keys, before giving # up. # # Default value: True ### supybot.plugins.Factoids.replyApproximateSearchKeys: True ### # Determines the format of the response given when a factoid's value is # requested. All the standard substitutes apply, in addition to "$key" # for the factoid's key and "$value" for the factoid's value. # # Default value: $key could be $value. ### supybot.plugins.Factoids.format: $key could be $value. ### # Determines whether we keep updating the usage count for each factoid, # for popularity ranking. # # Default value: True ### supybot.plugins.Factoids.keepRankInfo: True ### # Determines the number of factoid keys returned by the factrank # command. # # Default value: 20 ### supybot.plugins.Factoids.rankListLength: 20 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Games: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Games.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Google: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Google.public: True ### # Determines the URL that will be sent to Google for the Referer field # of the search requests. If this value is empty, a Referer will be # generated in the following format: http://$server/$botName # # Default value: ### supybot.plugins.Google.referer: ### # Determines whether the search snarfer is enabled. If so, messages # (even unaddressed ones) beginning with the word 'google' will result # in the first URL Google returns being sent to the channel. # # Default value: False ### supybot.plugins.Google.searchSnarfer: True ### # Determines whether the word 'google' in the bot's output will be made # colorful (like Google's logo). # # Default value: False ### supybot.plugins.Google.colorfulFilter: False ### # Determines whether results are bolded. # # Default value: True ### supybot.plugins.Google.bold: True ### # Determines the maximum number of results returned from the google # command. # # Default value: 8 ### supybot.plugins.Google.maximumResults: 8 ### # Determines what default language is used in searches. If left empty, # no specific language will be requested. # # Default value: lang_en ### supybot.plugins.Google.defaultLanguage: lang_en ### # Determines what level of search filtering to use by default. 'active' # - most filtering, 'moderate' - default filtering, 'off' - no filtering # # Default value: moderate ### supybot.plugins.Google.searchFilter: moderate ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Karma: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Karma.public: True ### # Determines whether the bot will output shorter versions of the karma # output when requesting a single thing's karma. # # Default value: False ### supybot.plugins.Karma.simpleOutput: False ### # Determines whether the bot will reply with a success message when # something's karma is increased or decreased. # # Default value: False ### supybot.plugins.Karma.response: False ### # Determines how many highest/lowest karma things are shown when karma # is called with no arguments. # # Default value: 3 ### supybot.plugins.Karma.rankingDisplay: 3 ### # Determines how many karma things are shown when the most command is # called. # # Default value: 25 ### supybot.plugins.Karma.mostDisplay: 25 ### # Determines whether users can adjust the karma of their nick. # # Default value: False ### supybot.plugins.Karma.allowSelfRating: True ### # Determines whether the bot will increase/decrease karma without being # addressed. # # Default value: False ### supybot.plugins.Karma.allowUnaddressedKarma: False ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Lart: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Lart.public: True ### # Determines whether the bot will show the ids of a lart when the lart # is given. # # Default value: False ### supybot.plugins.Lart.showIds: False ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Later: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Later.public: True ### # Determines the maximum number of messages to be queued for a user. If # this value is 0, there is no maximum. # # Default value: 0 ### supybot.plugins.Later.maximum: 0 ### # Determines whether users will be notified in the first place in which # they're seen, or in private. # # Default value: True ### supybot.plugins.Later.private: True ### # Determines whether users will be notified upon joining any channel the # bot is in, or only upon sending a message. # # Default value: True ### supybot.plugins.Later.tellOnJoin: True ### # Determines the maximum number of days that a message will remain # queued for a user. After this time elapses, the message will be # deleted. If this value is 0, there is no maximum. # # Default value: 30 ### supybot.plugins.Later.messageExpiry: 30 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Math: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Math.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.MessageParser: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.MessageParser.public: True ### # Determines whether the message parser is enabled. If enabled, will # trigger on regexps added to the regexp db. # # Default value: True ### supybot.plugins.MessageParser.enable: True ### # Determines whether we keep updating the usage count for each regexp, # for popularity ranking. # # Default value: True ### supybot.plugins.MessageParser.keepRankInfo: True ### # Determines the number of regexps returned by the triggerrank command. # # Default value: 20 ### supybot.plugins.MessageParser.rankListLength: 20 ### # Determines the capability required (if any) to vacuum the database. # # Default value: admin ### supybot.plugins.MessageParser.requireVacuumCapability: admin ### # Determines the capabilities required (if any) to manage the regexp # database, including add, remove, lock, unlock. Use 'channel,capab' for # channel-level capabilities. Note that absence of an explicit # anticapability means user has capability. # # Default value: admin; channel,op ### supybot.plugins.MessageParser.requireManageCapability: admin; channel,op ### # Determines the separator used between regexps when shown by the list # command. # # Default value: , ### supybot.plugins.MessageParser.listSeparator: , ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Misc: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Misc.public: True ### # Determines whether the bot will list private plugins with the list # command if given the --private switch. If this is disabled, non-owner # users should be unable to see what private plugins are loaded. # # Default value: True ### supybot.plugins.Misc.listPrivatePlugins: True ### # Determines whether the bot will list unloaded plugins with the list # command if given the --unloaded switch. If this is disabled, non-owner # users should be unable to see what unloaded plugins are available. # # Default value: True ### supybot.plugins.Misc.listUnloadedPlugins: True ### # Determines the format string for timestamps in the Misc.last command. # Refer to the Python documentation for the time module to see what # formats are accepted. If you set this variable to the empty string, # the timestamp will not be shown. # # Default value: [%H:%M:%S] ### supybot.plugins.Misc.timestampFormat: [%H:%M:%S] ### # Determines whether or not the timestamp will be included in the output # of last when it is part of a nested command # # Default value: False ### supybot.plugins.Misc.last.nested.includeTimestamp: False ### # Determines whether or not the nick will be included in the output of # last when it is part of a nested command # # Default value: False ### supybot.plugins.Misc.last.nested.includeNick: False ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Network: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Network.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Owner: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Owner.public: True ### # Determines what quit message will be used by default. If the quit # command is called without a quit message, this will be used. If this # value is empty, the nick of the person giving the quit command will be # used. # # Default value: ### supybot.plugins.Owner.quitMsg: ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Plugin: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Plugin.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.PluginDownloader: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.PluginDownloader.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Praise: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Praise.public: True ### # Determines whether the bot will show the ids of a praise when the # praise is given. # # Default value: False ### supybot.plugins.Praise.showIds: False ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Prasie: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Prasie.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Pysandbox: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Pysandbox.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Qoute: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Qoute.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Quote: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Quote.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.RSS: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.RSS.public: True ### # Determines whether the bot will bold the title of the feed when it # announces new news. # # Default value: True ### supybot.plugins.RSS.bold: True ### # Determines what string is used to separate headlines in new feeds. # # Default value: || ### supybot.plugins.RSS.headlineSeparator: || ### # Determines what prefix is prepended (if any) to the new news item # announcements made in the channel. # # Default value: New news from ### supybot.plugins.RSS.announcementPrefix: New news from ### # Determines which RSS feeds should be announced in the channel; valid # input is a list of strings (either registered RSS feeds or RSS feed # URLs) separated by spaces. # # Default value: ### supybot.plugins.RSS.announce: ### # Determines whether the bot will list the link along with the title of # the feed when a feed is automatically announced. # # Default value: False ### supybot.plugins.RSS.announce.showLinks: False ### # Indicates how many seconds the bot will wait between retrieving RSS # feeds; requests made within this period will return cached results. # # Default value: 1800 ### supybot.plugins.RSS.waitPeriod: 1800 ### # Determines what feeds should be accessible as commands. # # Default value: ### supybot.plugins.RSS.feeds: ### # Determines whether the bot will list the link along with the title of # the feed when the rss command is called. # supybot.plugins.RSS.announce.showLinks affects whether links will be # listed when a feed is automatically announced. # # Default value: False ### supybot.plugins.RSS.showLinks: False ### # Indicates how many headlines an rss feed will output by default, if no # number is provided. # # Default value: 1 ### supybot.plugins.RSS.defaultNumberOfHeadlines: 1 ### # Indicates how many headlines an rss feed will output when it is first # added to announce for a channel. # # Default value: 5 ### supybot.plugins.RSS.initialAnnounceHeadlines: 5 ### # Space separated list of strings, lets you filter headlines to those # containing one or more items in this whitelist. # # Default value: ### supybot.plugins.RSS.keywordWhitelist: ### # Space separated list of strings, lets you filter headlines to those # not containing any items in this blacklist. # # Default value: ### supybot.plugins.RSS.keywordBlacklist: ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Sandbox: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Sandbox.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Seen: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Seen.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Services: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Services.public: True ### # Determines what nicks the bot will use with services. # # Default value: ### supybot.plugins.Services.nicks: alipi_not ### # Determines what networks this plugin will be disabled on. # # Default value: QuakeNet ### supybot.plugins.Services.disabledNetworks: QuakeNet ### # Determines whether the bot will not join any channels until it is # identified. This may be useful, for instances, if you have a vhost # that isn't set until you're identified, or if you're joining +r # channels that won't allow you to join unless you identify. # # Default value: False ### supybot.plugins.Services.noJoinsUntilIdentified: False ### # Determines how many seconds the bot will wait between successive GHOST # attempts. # # Default value: 60 ### supybot.plugins.Services.ghostDelay: 60 ### # Determines what nick the 'NickServ' service has. # # Default value: ### supybot.plugins.Services.NickServ: NickServ ### # Determines what nick the 'ChanServ' service has. # # Default value: ### supybot.plugins.Services.ChanServ: ChanServ ### # Determines what password the bot will use with ChanServ. # # Default value: ### supybot.plugins.Services.ChanServ.password: ### # Determines whether the bot will request to get opped by the ChanServ # when it joins the channel. # # Default value: False ### supybot.plugins.Services.ChanServ.op: False supybot.plugins.Services.ChanServ.op.#amclug: True ### # Determines whether the bot will request to get half-opped by the # ChanServ when it joins the channel. # # Default value: False ### supybot.plugins.Services.ChanServ.halfop: False ### # Determines whether the bot will request to get voiced by the ChanServ # when it joins the channel. # # Default value: False ### supybot.plugins.Services.ChanServ.voice: False ### # Determines whether this plugin is loaded by default. ### supybot.plugins.String: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.String.public: True ### # Determines the maximum size of a string given to the levenshtein # command. The levenshtein command uses an O(m*n) algorithm, which means # that with strings of length 256, it can take 1.5 seconds to finish; # with strings of length 384, though, it can take 4 seconds to finish, # and with strings of much larger lengths, it takes more and more time. # Using nested commands, strings can get quite large, hence this # variable, to limit the size of arguments passed to the levenshtein # command. # # Default value: 256 ### supybot.plugins.String.levenshtein.max: 256 ### # Determines the maximum time, in seconds, that a regular expression is # given to execute before being terminated. Since there is a possibility # that user input for the re command can cause it to eat up large # amounts of ram or cpu time, it's a good idea to keep this low. Most # normal regexps should not take very long at all. # # Default value: 0.10000000000000001 ### supybot.plugins.String.re.timeout: 0.10000000000000001 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.SupySandbox: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.SupySandbox.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Topic: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Topic.public: True ### # Determines what separator is used between individually added topics in # the channel topic. # # Default value: || ### supybot.plugins.Topic.separator: || ### # Determines what format is used to add topics in the topic. All the # standard substitutes apply, in addition to "$topic" for the topic # itself. # # Default value: $topic ($nick) ### supybot.plugins.Topic.format: $topic ($nick) ### # Determines whether the bot will recognize the TOPICLEN value sent to # it by the server and thus refuse to send TOPICs longer than the # TOPICLEN. These topics are likely to be truncated by the server # anyway, so this defaults to True. # # Default value: True ### supybot.plugins.Topic.recognizeTopiclen: True ### # Determines what the default topic for the channel is. This is used by # the default command to set this topic. # # Default value: ### supybot.plugins.Topic.default: ### # Determines the number of previous topics to keep around in case the # undo command is called. # # Default value: 10 ### supybot.plugins.Topic.undo.max: 10 ### # Determines the capabilities required (if any) to make any topic # changes, (everything except for read-only operations). Use # 'channel,capab' for channel-level capabilities. Note that absence of # an explicit anticapability means user has capability. # # Default value: channel,op; channel,halfop ### supybot.plugins.Topic.requireManageCapability: channel,op; channel,halfop ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Twitter: False ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Twitter.public: True ### # The Twitter Access Token key for the bot's account (running # get_access_token.py is a way to get it) # # Default value: ### supybot.plugins.Twitter.accounts.bot.key: ### # The Twitter Access Token secret for the bot's account (running # get_access_token.py is a way to get it) # # Default value: ### supybot.plugins.Twitter.accounts.bot.secret: ### # The URL to the base API URL (by default, it is Twitter.com, but you # can use it for twitter-compatible services, such as # identica/statusnet. # # Default value: https://api.twitter.com/1 ### supybot.plugins.Twitter.accounts.bot.api: https://api.twitter.com/1 ### # The Twitter Access Token key for this channel's account (running # get_access_token.py is a way to get it) # # Default value: ### supybot.plugins.Twitter.accounts.channel.key: ### # The Twitter Access Token secret for this channel's account (running # get_access_token.py is a way to get it) # # Default value: ### supybot.plugins.Twitter.accounts.channel.secret: ### # The URL to the base API URL (by default, it is Twitter.com, but you # can use it for twitter-compatible services, such as # identica/statusnet. # # Default value: https://api.twitter.com/1 ### supybot.plugins.Twitter.accounts.channel.api: https://api.twitter.com/1 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Unix: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Unix.public: True ### # Determines what command will be called for the fortune command. # # Default value: /usr/games/fortune ### supybot.plugins.Unix.fortune.command: /usr/games/fortune ### # Determines whether only short fortunes will be used if possible. This # sends the -s option to the fortune program. # # Default value: True ### supybot.plugins.Unix.fortune.short: True ### # Determines whether fortune will give equal weight to the different # fortune databases. If false, then larger databases will be given more # weight. This sends the -e option to the fortune program. # # Default value: True ### supybot.plugins.Unix.fortune.equal: True ### # Determines whether fortune will retrieve offensive fortunes along with # the normal fortunes. This sends the -a option to the fortune program. # # Default value: False ### supybot.plugins.Unix.fortune.offensive: True ### # Determines what specific file (if any) will be used with the fortune # command; if none is given, the system-wide default will be used. Do # note that this fortune file must be placed with the rest of your # system's fortune files. # # Default value: ### supybot.plugins.Unix.fortune.files: ### # Determines what command will be called for the spell command. # # Default value: ### supybot.plugins.Unix.spell.command: ### # Determines what command will be called for the wtf command. # # Default value: /usr/games/wtf ### supybot.plugins.Unix.wtf.command: /usr/games/wtf ### # Determines what command will be called for the ping command. # # Default value: /bin/ping ### supybot.plugins.Unix.ping.command: /bin/ping ### # Determines whether this plugin is loaded by default. ### supybot.plugins.User: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.User.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Utilities: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Utilities.public: True ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Web: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Web.public: True ### # Determines whether the bot will output the HTML title of URLs it sees # in the channel. # # Default value: False ### supybot.plugins.Web.titleSnarfer: True ### # Determines what URLs are to be snarfed and stored in the database in # the channel; URLs matching the regexp given will not be snarfed. Give # the empty string if you have no URLs that you'd like to exclude from # being snarfed. # # Default value: ### supybot.plugins.Web.nonSnarfingRegexp: ### # Determines the maximum number of bytes the bot will download via the # 'fetch' command in this plugin. # # Default value: 0 ### supybot.plugins.Web.fetch.maximum: 0 ### # Determines whether this plugin is loaded by default. ### supybot.plugins.Wikipedia: True ### # Determines whether this plugin is publicly visible. # # Default value: True ### supybot.plugins.Wikipedia.public: True ### # URL of the website from where you want to pull pages (usually: your # language's wikipedia) # # Default value: en.wikipedia.org ### supybot.plugins.Wikipedia.url: en.wikipedia.org ### # Determines whether the bot will always load important plugins (Admin, # Channel, Config, Misc, Owner, and User) regardless of what their # configured state is. Generally, if these plugins are configured not to # load, you didn't do it on purpose, and you still want them to load. # Users who don't want to load these plugins are smart enough to change # the value of this variable appropriately :) # # Default value: True ### supybot.plugins.alwaysLoadImportant: True ### # Determines what databases are available for use. If this value is not # configured (that is, if its value is empty) then sane defaults will be # provided. # # Default value: sqlite3 sqlite anydbm cdb flat pickle ### supybot.databases: ### # Determines what filename will be used for the users database. This # file will go into the directory specified by the # supybot.directories.conf variable. # # Default value: users.conf ### supybot.databases.users.filename: users.conf ### # Determines how long it takes identification to time out. If the value # is less than or equal to zero, identification never times out. # # Default value: 0 ### supybot.databases.users.timeoutIdentification: 0 ### # Determines whether the bot will allow users to unregister their users. # This can wreak havoc with already-existing databases, so by default we # don't allow it. Enable this at your own risk. (Do also note that this # does not prevent the owner of the bot from using the unregister # command.) # # Default value: False ### supybot.databases.users.allowUnregistration: False ### # Determines what filename will be used for the ignores database. This # file will go into the directory specified by the # supybot.directories.conf variable. # # Default value: ignores.conf ### supybot.databases.ignores.filename: ignores.conf ### # Determines what filename will be used for the channels database. This # file will go into the directory specified by the # supybot.directories.conf variable. # # Default value: channels.conf ### supybot.databases.channels.filename: channels.conf ### # Determines whether database-based plugins that can be channel-specific # will be so. This can be overridden by individual channels. Do note # that the bot needs to be restarted immediately after changing this # variable or your db plugins may not work for your channel; also note # that you may wish to set # supybot.databases.plugins.channelSpecific.link appropriately if you # wish to share a certain channel's databases globally. # # Default value: True ### supybot.databases.plugins.channelSpecific: True ### # Determines what channel global (non-channel-specific) databases will # be considered a part of. This is helpful if you've been running # channel-specific for awhile and want to turn the databases for your # primary channel into global databases. If # supybot.databases.plugins.channelSpecific.link.allow prevents linking, # the current channel will be used. Do note that the bot needs to be # restarted immediately after changing this variable or your db plugins # may not work for your channel. # # Default value: # ### supybot.databases.plugins.channelSpecific.link: # ### # Determines whether another channel's global (non-channel-specific) # databases will be allowed to link to this channel's databases. Do note # that the bot needs to be restarted immediately after changing this # variable or your db plugins may not work for your channel. # # Default value: True ### supybot.databases.plugins.channelSpecific.link.allow: True ### # Determines whether CDB databases will be allowed as a database # implementation. # # Default value: True ### supybot.databases.types.cdb: True ### # Determines how often CDB databases will have their modifications # flushed to disk. When the number of modified records is greater than # this fraction of the total number of records, the database will be # entirely flushed to disk. # # Default value: 0.5 ### supybot.databases.types.cdb.maximumModifications: 0.5 ### # Determines what will be used as the default banmask style. # # Default value: host user ### supybot.protocols.irc.banmask: host user ### # Determines whether the bot will strictly follow the RFC; currently # this only affects what strings are considered to be nicks. If you're # using a server or a network that requires you to message a nick such # as services@this.network.server then you you should set this to False. # # Default value: True ### supybot.protocols.irc.strictRfc: True ### # Determines what user modes the bot will request from the server when # it first connects. Many people might choose +i; some networks allow # +x, which indicates to the auth services on those networks that you # should be given a fake host. # # Default value: ### supybot.protocols.irc.umodes: ### # Determines what vhost the bot will bind to before connecting to the # IRC server. # # Default value: ### supybot.protocols.irc.vhost: ### # Determines how many old messages the bot will keep around in its # history. Changing this variable will not take effect until the bot is # restarted. # # Default value: 1000 ### supybot.protocols.irc.maxHistoryLength: 1000 ### # A floating point number of seconds to throttle queued messages -- that # is, messages will not be sent faster than once per throttleTime # seconds. # # Default value: 1.0 ### supybot.protocols.irc.throttleTime: 1.0 ### # Determines whether the bot will send PINGs to the server it's # connected to in order to keep the connection alive and discover # earlier when it breaks. Really, this option only exists for debugging # purposes: you always should make it True unless you're testing some # strange server issues. # # Default value: True ### supybot.protocols.irc.ping: True ### # Determines the number of seconds between sending pings to the server, # if pings are being sent to the server. # # Default value: 120 ### supybot.protocols.irc.ping.interval: 120 ### # Determines whether the bot will refuse duplicated messages to be # queued for delivery to the server. This is a safety mechanism put in # place to prevent plugins from sending the same message multiple times; # most of the time it doesn't matter, unless you're doing certain kinds # of plugin hacking. # # Default value: False ### supybot.protocols.irc.queuing.duplicates: False ### # Determines how many seconds must elapse between JOINs sent to the # server. # # Default value: 0.0 ### supybot.protocols.irc.queuing.rateLimit.join: 0.0 ### # Determines how many bytes the bot will 'peek' at when looking through # a URL for a doctype or title or something similar. It'll give up after # it reads this many bytes, even if it hasn't found what it was looking # for. # # Default value: 4096 ### supybot.protocols.http.peekSize: 4096 ### # Determines what proxy all HTTP requests should go through. The value # should be of the form 'host:port'. # # Default value: ### supybot.protocols.http.proxy: ### # Determines what host the HTTP server will bind. # # Default value: 0.0.0.0 ### supybot.servers.http.host: 0.0.0.0 ### # Determines what port the HTTP server will bind. # # Default value: 8080 ### supybot.servers.http.port: 8080 ### # Defines whether the server will stay alive if no plugin is using it. # This also means that the server will start even if it is not used. # # Default value: False ### supybot.servers.http.keepAlive: False ### # Determines whether the bot will ignore unregistered users by default. # Of course, that'll make it particularly hard for those users to # register or identify with the bot, but that's your problem to solve. # # Default value: False ### supybot.defaultIgnore: False ### # A string that is the external IP of the bot. If this is the empty # string, the bot will attempt to find out its IP dynamically (though # sometimes that doesn't work, hence this variable). # # Default value: ### supybot.externalIP: ### # Determines what the default timeout for socket objects will be. This # means that *all* sockets will timeout when this many seconds has gone # by (unless otherwise modified by the author of the code that uses the # sockets). # # Default value: 10 ### supybot.defaultSocketTimeout: 10 ### # Determines what file the bot should write its PID (Process ID) to, so # you can kill it more easily. If it's left unset (as is the default) # then no PID file will be written. A restart is required for changes to # this variable to take effect. # # Default value: ### supybot.pidFile: ### # Determines whether the bot will automatically thread all commands. # # Default value: False ### supybot.debug.threadAllCommands: False ### # Determines whether the bot will automatically flush all flushers # *very* often. Useful for debugging when you don't know what's breaking # or when, but think that it might be logged. # # Default value: False ### supybot.debug.flushVeryOften: False ### # Determines what the bot's logging format will be. The relevant # documentation on the available formattings is Python's documentation # on its logging module. # # Default value: %(levelname)s %(asctime)s %(name)s %(message)s ### supybot.log.format: %(levelname)s %(asctime)s %(name)s %(message)s ### # Determines what the minimum priority level logged to file will be. Do # note that this value does not affect the level logged to stdout; for # that, you should set the value of supybot.log.stdout.level. Valid # values are DEBUG, INFO, WARNING, ERROR, and CRITICAL, in order of # increasing priority. # # Default value: INFO ### supybot.log.level: INFO ### # Determines the format string for timestamps in logfiles. Refer to the # Python documentation for the time module to see what formats are # accepted. If you set this variable to the empty string, times will be # logged in a simple seconds-since-epoch format. # # Default value: %Y-%m-%dT%H:%M:%S ### supybot.log.timestampFormat: %Y-%m-%dT%H:%M:%S ### # Determines whether the bot will log to stdout. # # Default value: True ### supybot.log.stdout: False ### # Determines whether the bot's logs to stdout (if enabled) will be # colorized with ANSI color. # # Default value: False ### supybot.log.stdout.colorized: True ### # Determines whether the bot will wrap its logs when they're output to # stdout. # # Default value: True ### supybot.log.stdout.wrap: True ### # Determines what the bot's logging format will be. The relevant # documentation on the available formattings is Python's documentation # on its logging module. # # Default value: %(levelname)s %(asctime)s %(message)s ### supybot.log.stdout.format: %(levelname)s %(asctime)s %(message)s ### # Determines what the minimum priority level logged will be. Valid # values are DEBUG, INFO, WARNING, ERROR, and CRITICAL, in order of # increasing priority. # # Default value: INFO ### supybot.log.stdout.level: INFO ### # Determines whether the bot will separate plugin logs into their own # individual logfiles. # # Default value: False ### supybot.log.plugins.individualLogfiles: False ### # Determines what the bot's logging format will be. The relevant # documentation on the available formattings is Python's documentation # on its logging module. # # Default value: %(levelname)s %(asctime)s %(message)s ### supybot.log.plugins.format: %(levelname)s %(asctime)s %(message)s ### # Determines the bot's default language. Valid values are things like # en, fr, de, etc. # # Default value: 'en\n' ### supybot.language: en ### # These are the capabilities that are given to everyone by default. If # they are normal capabilities, then the user will have to have the # appropriate anti-capability if you want to override these # capabilities; if they are anti-capabilities, then the user will have # to have the actual capability to override these capabilities. See # docs/CAPABILITIES if you don't understand why these default to what # they do. # # Default value: -owner -admin -trusted ### supybot.capabilities: -owner -admin -trusted ### # Determines whether the bot by default will allow users to have a # capability. If this is disabled, a user must explicitly have the # capability for whatever command he wishes to run. # # Default value: True ### supybot.capabilities.default: True