Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ibid.ini(5) [debian man page]

IBID.INI(5)						     Ibid - Multi-protocol Bot						       IBID.INI(5)

NAME
ibid.ini - Configuration file for Ibid DESCRIPTION
ibid.ini contains all the configuration for an Ibid bot. A complete description of the contents of this file is out of the scope of this manpage. For more details see the Ibid documentation: http://ibid.omnia.za.net/docs/ Lines beginning with # are considered to be comments and ignored. To use a # symbol in an option (e.g. an IRC channel name), quote the option with double-quotes, e.g. channels="#ibid", This file will be written to by the bot when configuration settings are altered online. It can also be edited manually and a running bot told to "reload config". Manual edits and comments will be preserved when the bot modifies its own configuration, provided that they have not been edited since bot start-up or the last config reload. SECTIONS
auth Settings related to permissions and authentication. Permissions listed in auth.permissions are granted to all users unless revoked by source or account. sources Sources are Ibid connections to an IM service. They range from IRC networks to the bot's built-in HTTP server. Each source is configured in a section named after the source. The source name will define the driver that the source should use, unless a type option is provided. Sources can be disabled by setting disabled=True. plugins Plugin configuration. Each plugin is configured within a section named after the plugin. cachedir The directory that temporary files (such as downloaded data), useful to be the bot but expendable, is stored in. core.autoload If True, all plugins not explicitly ignored will be loaded. (Note that some plugins mark themselves as non-auto-loadable). Defaults to True. core.load The list of plugins (or plugin.Processors) to load. core.noload The list of plugins (or plugin.Processors) to ignore and not load. core.names The names that the bot should respond to. core.ignore Nicks that the bot should completely ignore (e.g. other bots). EXAMPLE
botname = joebot logging = logging.ini [auth] methods = password, timeout = 300 permissions = +factoid, +karma, +sendmemo, +recvmemo, +feeds, +publicresponse [sources] [[telnet]] [[timer]] [[http]] url = http://joebot.example.com [[smtp]] [[pb]] [[atrum]] channels = "#ibid", nick = $botname type = irc auth = hostmask, nickserv server = irc.atrum.org [plugins] cachedir = /tmp/ibid [[core]] names = $botname, bot, ant ignore = , [databases] ibid = sqlite:///ibid.db FILES
logging.ini A standard Python logging.config configuration file describing loggers, handlers, and formatters for log messages. See http://docs.python.org/library/logging.html SEE ALSO
ibid(1), ibid.ini(5), twistd(1), http://ibid.omnia.za.net/ Ibid 0.1 March 2010 IBID.INI(5)

Check Out this Related Man Page

IBID-PLUGIN(1)						     Ibid - Multi-protocol Bot						    IBID-PLUGIN(1)

NAME
ibid-plugin - Plugin testing developer environment for Ibid SYNOPSIS
ibid-plugin [options...] [plugin[-]|plugin.Processor[-]...] DESCRIPTION
This utility is for testing Ibid plugins without the full bot environment. This means testing can be performed offline and without loading all the available plugins. This should be run in a configured Ibid bot directory. All the listed plugins and Processors will be loaded on start-up. Naming a plugin loads the complete plugin. Suffixing a - to the name, ignores that plugin or Processor instead of loading it. OPTIONS
-c, --configured Load all configured plugins, instead of only the core and requested plugins. -o, --only Don't load the Ibid core plugins, only the plugins requested. Note that without the core plugin to pre- and post-process events, most other plugins won't function correctly. -p, --public By default, ibid-plugin emulates a private conversation with the bot. With this option, the conversation is considered to be public and the bot will have to be addressed to provoke a response. -v, --verbose Increase verbosity. The final form of each Event object will be displayed before any responses. -h, --help Show a help message and exit. FILES
ibid.ini Locates the database to act upon by looking for the [databases].ibid value in the bot configuration file in the current directory. BUGS
ibid-plugin doesn't emulate a complete Ibid environment, and will ignore all of the following: * Delayed and periodically executed functions. * Messages to alternate sources. * Messages directly dispatched, rather than added to responses. * Permissions. All permissions are granted to the user. SEE ALSO
ibid(1), ibid.ini(5), ibid-setup(1), http://ibid.omnia.za.net/ Ibid 0.1 March 2010 IBID-PLUGIN(1)
Man Page