Makefile: also copy tar.gz to download/ in deploy-release.
[supybook.git] / index.txt
blobf59e7397bb961077887b11656a311be2ad6cbaac
1 Supybook
2 ========
3 Heikki Hokkanen <hoxu@users.sf.net>
4 {date}
5 {revision}
7 == Preface ==
9 NOTE: At the time of this writing, Supybot version is 0.83.3. If you are using a newer (or even older) version, keep that in mind.
11 NOTE: This document is very much a work in process. It covers nowhere near everything there is to Supybot. However, it hopefully allows a good start into learning Supybot.
13 === What is this document? ===
15 This document is a handbook for http://supybot.com/[Supybot], the IRC (http://en.wikipedia.org/wiki/Internet_Relay_Chat[Internet Relay Chat]) bot written in Python.
17 === Motivation behind this document ===
19 Some time ago I started needing an IRC bot for various purposes. The bot would have to be able to take care of auto-opping and similar "traditional" channel duties. This made me think of http://oer.equnet.org/[Oer], an old but very nice bot. However, I also wanted to have factoid functionality similar to http://blootbot.sourceforge.net/[blootbot]/http://infobot.org/[infobot], without having to run multiple bots. That was when I arrived at Supybot once again. This time I decided to give it a closer look.
21 My experience of the documentation was lacking though. I longed for something similar to http://oer.equnet.org/um.php[Oer's User Manual] that provides a quick references for basic administrator tasks and so forth. Alas, I could not find such document.
23 I figured I could as well wrap up such a handbook while learning to use the bot myself. Hopefully someone finds reading this document as useful as writing it was.
25 === Conventions used in this document ===
27 `command <name> [value]`::
28         A command that takes `name` as a required parameter and `value` as an optional parameter.
30 `command <nick...>`::
31         A command that takes one or more parameters.
33 `command [--{foo,bar}] <value>`::
34         A command that takes two optional options as parameters, eg. `--foo value` and/or `--bar value`.
36 [green]#Plugin#::
37         A plugin name
39 === This document is Free ===
41 This document is Free (TM) as defined by the http://www.fsf.org/[Free Software Foundation], more specifically, this document is available under the terms of http://www.gnu.org/licenses/gpl-3.0.txt[GNU General Public License version 3 (GPLv3)]. The source is a text file that can be converted to various formats by http://www.methods.co.nz/asciidoc/[asciidoc].
43 === How to give feedback ===
45 If you spot an error, have suggestions or just want to tell me how much you love/hate the document, send e-mail to mailto:hoxu@users.sf.net[]. Prefix the Subject with `[supybook]`.
47 == Getting started ==
49 === Initial configuration ===
51 Create a new directory (eg. `mkdir ~/supybot`) and run `supybot-wizard` in it. Follow the directions to get the bot initially configured.
53 Once you are ready with the wizard, I suggest you start the bot inside screen:
55 ----
56 $ screen
57 $ supybot configFile
58 ----
60 This way you can attach to the screen later to see the messages it writes to stdout, while still running the bot in the background. Alternative is to run it in the daemon mode, `supybot --daemon configFile`.
62 You can set up a crontab to start the bot automatically, for example:
63 ----
64 $ crontab -e
65 > @reboot screen -d -m supybot /path/to/configFile
66 ----
68 === Identifying to the bot ===
70 After running supybot-wizard and starting the bot, connect to the same IRC network it is on, and /query it. You can identify with the `identify <name> <password>` command. You can check the bot's idea of who you are with the `whoami` command.
72 NOTE: All commands that contain a `password` must be sent to the bot in private.
74 === Accessing the online help ===
76 Most commands on the bot have a short online help available. You can use `list` to list loaded plugins, and `list <plugin>` to list commands in those plugins. `help [plugin] <command>` can be used to access the command help. Use `more` to read long messages from the bot.
78 Help for configuration items can be accessed with the `config help <key>` command.
80 == Understanding supybot's peculiarities ==
82 Supybot has a couple of features that sets it apart from more traditional bots. More specifically, nested commands, plugin framework (even the basic functionality is implemented using plugins), and capabilities. This section covers some basic information about Supybot. Feel free to skip it, but come back later if you run into something you don't understand.
84 === Nested commands ===
86 Supybot allows nested commands, in other words, you can pass the result of a command to another command as a parameter. What does this allow then, though, apart from the obvious bragging rights? For example, if you want to restore a configuration entry to the default value, you can type:
88 `config reply.withNickPrefix [config default reply.withNickPrefix]`
90 Obviously, that wasn't very neat. They could've included a `config reset <key>` command instead, for example. But I'm sure you can figure out *something* more useful to do with this, as a homework ;-)
92 === Plugins ===
94 Pretty much everything in Supybot is a plugin. Most commands you use belong to a plugin. If two plugins provide the same command, then you need to prefix the command with the plugin name. For example, the `ignore list` command yields the following output:
96 .output
97 ----
98 Error: The command "ignore list" is available in the Admin and Channel plugins.
99 Please specify the plugin whose command you wish to call by using its name as a command before "ignore list".
100 ----
102 Thus, you need to either use `admin ignore list` or `channel ignore list` command. That is, unless you define which plugin is the default one using the `defaultplugin [--remove] <command> [plugin]` command provided in the [green]#Owner# plugin.
104 The `list` command ([green]#Plugin#) can be used to list loaded plugins. You can prevent some plugins from showing in the list with the command:
106 `config plugins.<plugin>.public False`
108 WARNING: This does not really make the plugins private. They can still be listed by unregistered users (unless they have anticapability for `list`). This is a bug in my opinion.
110 `list`::
111         List currently loaded plugins, excluding the ones set non-public.
113 `list --private`::
114         List loaded plugins that are set to non-public.
116 `list <plugin>`::
117         List commands provided by the given plugin.
119 `load [--deprecated] <plugin>`::
120         Load a plugin. Supybot looks for plugins in directories listed in `config conf.supybot.directories.plugins`.
122 `unload <plugin>`::
123         Unloads a plugin. The [green]#Owner# plugin cannot be unloaded.
125 NOTE: Plugins can store information in a database. By default, the database is channel-specific. This can be changed by modifying `config databases.plugins.channelSpecific` to be global. The config item can also be set on per-channel basis.
127 === Configuration ===
129 Most of Supybot configuration is done online using the [green]#Config# plugin. This excludes things such as granting the owner capability (must be done by modifying the files).
131 There are two types of configuration items: global and channel-specific. The latter are actually no different from the global ones, except that they can be set for channels as well. This means you can have a global default which is overridden for specific channels.
133 Configuration items are hierarchical. The "root" item is `supybot`, which can be omitted. Configs for plugins live under their own key, `supybot.plugins`, or shortly, `plugins`.
135 `config <name> [value]`::
136         Get the current value of `name`, or set it to `value` if provided.
138 `config channel [channel] <name> [value]`::
139         Ditto, but for channel configs.
141 `config default <name>`::
142         Get the default value of `name`. This does not change the value. No, there is no command to reset an item to default value. You need to use `config <name> [config default <name>]` for that.
144 `config export <filename>`::
145         Export non-confidential parts of configuration to a file for debugging purposes.
147 `config help <name>`::
148         Show help for a configuration item.
150 `config list <group>`::
151         List configuration items in `group`. Subgroups are prefixed with '@', channel-specific items with '#'.
153 `config reload`::
154         Reloads configuration. Mostly useful if you've had to modify the files by hand.
156 `config search <word>`::
157         Show configuration items matching `word`.
159 `owner flush`::
160         Save configuration changes to disk. This should be done automatically as well, if the `flush` configuration item is True (the default).
162 NOTE: Some of the sections in this document have a list of related configuration items. They are listed similarly to the table below. In this example the config value could be modified with the `config plugin.example.foo <True|False>` command. If the key is prefixed with `#`, the config value can be set both globally and on channel-specific basis.
164 .plugin.example
165 `15`15`70~~~
166 Key,Default,Description
168 foo,True,Example key.
169 #bar,False,Example key that can be set on channels as well.
172 [[capabilities]]
173 === Capabilities ===
175 Many traditional IRC bots manage permissions of users using flags. Some network services in fact, do, too. Each user can have various flags on each channel. The flags can mean auto-op, op, use of !ban command and so forth. On side of those, there are often global user flags that entitle the user to full access, global auto-op, etc. Some bots also support channel flags that determine what bot functionality is available on the channel.
177 Supybot does not have any flags. Instead, the permissions are managed using 'capabilities'. There are two kinds of capabilities: `user capabilities` and `channel capabilities`.
179 'User capabilities' are checked first when a user tries to run a command. If the user has an 'anticapability' for the command (eg. `-command`, `-Plugin.command`) or the Plugin (`-Plugin`), it won't be run.
181 Next, if the command was run on the channel, the 'channel capabilities' are checked. The logic is same as above, but the checked capabilities are prefixed with `#channel,`, for example `#channel,-Plugin.command`.
183 There are some special capabilities recognized by Supybot:
185 `owner`::
186         For bot owners: the people who have "physical" access to the bot and its files. This cannot be granted online; the 'conf/users.conf' file must be edited by hand followed by `reload`. Owners are exempt from `#channel,op` capability checks and channel anticapabilities.
188 `admin`::
189         For bot administrators. Users with this capability can manage global bot properties, make the bot join new channels and so forth. However, they can't do channel administration which is reserved for ops.
191 `#channel,op`::
192         Channel ops can execute channel-related commands.
194 `trusted`::
195         Allow user to run commands that can potentially crash the bot, or cause denial of service on the system it's running on.
197 Commands used to manipulate capabilities are covered in the <<channel-capabilities,Manipulating channel capabilities>> and <<user-capabilities,Manipulating user capabilities>> sections.
199 == Administrative tasks ==
201 === Networks ===
203 Related plugins: [green]#Network, Services#.
205 ==== Adding a network ====
207 `network connect [--ssl] <network> [<host[:port]>] [password]`::
208         Connect to `network`. `host` must be provided if the network is new or has no servers defined.
210 ==== Reconnecting ====
212 `reconnect [network] [message]`::
213         Disconnects and connects `network`, or current if not specified. `message`, if given, is shown as the quit message, otherwise `config plugins.Owner.quitMsg` is used, or your nickname.
215 ==== Disconnecting ====
217 `network disconnect [network] [message]`::
218         Disconnect `network`, or current if not specified. `message` as above.
220 ==== Listing networks ====
222 `networks`::
223         List of networks & servers currently connected to.
225 .output
226 ----
227 freenode: wolfe.freenode.net and ircnet: irc.elisa.fi
228 ----
230 `config list networks`::
231         List all networks.
233 ==== Adding more servers ====
235 Once you've added a network with the initial server, you can add more servers:
237 `config networks.<network>.servers [config networks.<network>.servers] server:6667`
239 ==== Listing network servers ====
241 `config networks.<network>.servers`
243 .output
244 ----
245 chat.freenode.net:6667
246 ----
248 ==== Services: NickServ ====
250 WARNING: My pratical experience with [green]#Services# plugin on Freenode is... not-so-good. It definitely does not work all the time as expected.
252 You can make Supybot identify itself to the network NickServ after it has connected.
254 `config plugins.Services.noJoinsUntilIdentified True`::
255         Settings this is useful on Freenode and other networks who change the user mask after identifying to NickServ. In my experience this seems to be a tad buggy, so I don't recommend enabling it unless really needed.
257 `config plugins.Services.NickServ NickServ`::
258         Tell the bot what name NickServ can be found under.
260 `services password <nick> [password]`::
261         Can be used to set or remove NickServ password.
263         NOTE: Password removal did not work for me on Supybot 0.83.3
264         
265 `services identify`::
266         Identifies the bot to NickServ with the current nick. You don't need to give this command after the bot has been set up; it will identify when connecting to the network automatically.
268 ==== Services: ChanServ ====
270 You can make Supybot request op after joining a channel on a network with ChanServ.
272 `config plugins.Services.ChanServ ChanServ`::
273         Tell the bot what name ChanServ can be found under.
275 `config plugins.Services.ChanServ.op <on|off>`::
276         Set the default for all channels. This will be used unless a channel-specific config overrides it.
278 `config channel [channel] plugins.services.ChanServ.op <on|off>`::
279         Set to request op on the given `channel`.
281 Voice and half-op (on networks supporting it) can be used similarly.
283 === Channels ===
285 Related plugins: [green]#Channel#.
287 NOTE: Commands in this section (such as adding/removing channels) work in the current network, eg. the one you are messaging the bot in. The commands also accept a `[channel]` parameter which is needed only when the command is written in private.
289 NOTE: If you want to /msg the bot in one network, while having the command apply in another network, you can use the `network command <network> <command> [params]` command. The reply comes in the other network if you are there as well.
291 WARNING: The `network command` command does not seem to check if the user having your nick in the other network is recognized (eg. identified or recognized by hostmasks), so the reply may end up to someone else.
293 ==== Adding a new channel ====
295 `join <channel> [key]`::
296         Joins the `channel` using `key` if provided. Channels are automatically remembered and joined when the bot connects to the network next time.
298 NOTE: `config plugins.Channel.alwaysRejoin` determines whether the bot will (attempt to) rejoin the channel when kicked out (the default).
300 ==== Listing channels ====
302 `channels`
304 NOTE: This only works in private, to prevent knowledge of top secret channels from falling into wrong hands.
306 You can list channels in another network with `config networks.<network>.channels`. Or with `network command <network> channels`.
308 ==== Removing a channel ====
310 `part [channel] [reason]`::
311         Makes the bot leave `channel`, showing `reason` as part message if given. Note that all channel data is retained, but the bot does not join the channel anymore the next time it connects to the network.
313 ==== Modifying channel config ====
315 `config channel [channel] <name> <value>`::
316         Sets config item `name` on `channel` to `value`, overriding the global value.
318 ==== Setting the key ====
320 `channel key [channel] [key]`::
321         Sets key on `channel` to `key`, or removes it if `key` is not given.
323 ==== Setting the limit ====
325 `channel limit [channel] [limit]`::
326         Sets limit on `channel` to `limit`, or removes it if `limit` is not given (or is zero).
328 ==== Channel commands ====
330 Channel ops can use the following commands to control the channel via the bot, assuming it is opped.
332 `op [channel] [nick...]`::
333         Ops the given nicks (or you if none) on the channel.
335 `deop [channel] [nick...]`::
336         Ditto, but deops.
338 `voice [channel] [nick...]`::
339         Voices the given nicks (or you if none) on the channel.
341 `devoice [channel] [nick...]`::
342         Ditto, but devoices.
344 `kban [channel] [--{exact,nick,user,host}] <nick> [seconds] [reason]`::
345         Bans and kicks the given nick from the channel. If `seconds` is specified and is not 0, the ban will expire after that time.
347 `mode [channel] <mode> [params]`::
348         Set channel mode. This can be used to change any channel modes, making the commands below redundant aliases.
350 `moderate [channel]`::
351         Set +m. This is not enforced by the bot, so any channel op can remove it.
353 `unmoderate [channel]`::
354         Set -m.
356 `topic lock [channel]`::
357         Set +t. Not enforced, so any channel op can remove it.
359 `topic unlock [channel]`::
360         Set -t.
362 `alert [channel] <text>`::
363         Sends `text` to all users on the channel with op capability.
365 `cycle [channel]`::
366         Make the bot part and join the channel. Mostly useful to test whether auto-ops from other bots/users work for the bot.
368 ==== Maintaining the ban list ====
370 `ban add [channel] <nick|hostmask> [expires]`::
371         Add ban for given nick or hostmask on the channel. If nick is given, the full hostmask is banned. `expires` when gives, expires the ban after so many seconds.
373 `ban list [channel]`::
374         List bans with their expire times.
376 `ban remove [channel] <hostmask>`::
377         Removes the ban on given `hostmask`.
379 `config plugins.Channel.banmask <string>`::
380         Hostmask style for `ban add`: `exact`, `nick`, `user`, `host`. This means which parts of the nick's current hostmask are used (rest are wildcarded). Default is `host user` (eg. `*!user@host`).
382 NOTE: Users matching the ban list are not automatically kicked off the channel. See the `kban` command in the previous section to kick and ban a user.
384 ==== Maintaining the ignore list ====
386 `channel ignore add [channel] <nick|hostmask> [expires]`::
387         Ignores `hostmask` (or the full hostmask `nick` currently has) on `channel`. If `expires` is given, the ignore expires after that many seconds.
389 `channel ignore list [channel]`::
390         Show ignored hostmasks on `channel`. This does not show the expire times, though (argh!).
392 `channel ignore remove [channel] <hostmask>`::
393         Remove `hostmask` from list of ignored hostmasks on `channel`.
395 NOTE: There is also a global ignore list, available for admins.
397 ==== Listing channel nicks ====
399 `channel nicks [channel]`
401 ==== Topic operations ====
403 Related plugins: [green]#Topic#.
405 Supybot allows elaborate manipulation of the channel topic. Topic consists of items, separated by a configurable character (default is `||`). Items are one-indexed.
407 People who have used the Oer bot may notice that the topic manipulation commands are http://oer.equnet.org/help.php#um39[somewhat similar].
409 `topic add [channel] <text>`::
410         Add a new topic item at the end.
412 `topic change [channel] <number> <regexp>`::
413         Do a regular expression substitution on the topic item `number`. For example: `topic change 2 s/foo/bar/`.
415 `topic default [channel]`::
416         Restore topic on channel to the default set with `config plugins.Topic.default`.
418 `topic fit [channel] <text>`::
419         Adds a new topic item at the end like `topic add`, but if there isn't enough space, first removes some items from the beginning. `topic add` complains if there isn't enough space.
421 `topic get [channel] <number>`::
422         Return topic item `number`.
424 `topic insert [channel] <text>`::
425         Add a new topic item in the beginning.
427 `topic list [channel]`::
428         Return list of topic items.
430 `topic lock [channel]`::
431         Set channel mode `+t`, preventing non-opped users from changing the topic.
433 `topic redo [channel]`::
434         Undo the last undo.
436 `topic remove [channel] <number>`::
437         Remove item `number` from the topic.
439 `topic reorder [channel] <number>...`::
440         Reorder topic items in the given order. You must give as many numbers as there are items. For example, to move third item to first position, use `topic reorder 3 1 2`.
442 `topic replace [channel] <number> <text>`::
443         Replace topic item `number` with `text`.
445 `topic restore [channel]`::
446         Revert any changes made to the topic by users, and set it back to whatever the bot last set it to.
448 `topic separator [channel] <separator>`::
449         Change the topic separator to `separator`.
451 `topic set [channel] [number] <text>`::
452         Replace either the whole topic or, if `number` is given, one item. In the latter case, this is the same as `topic replace`.
454 `topic shuffle [channel]`::
455         Reorder the topic items randomly.
457 `topic swap [channel] <number1> <number2>`::
458         Swap topic items at the given positions.
460 `topic [channel]`::
461         Show (the whole) topic for the channel.
463 `topic undo [channel]`::
464         Revert the last change a topic command made to the topic. Note that if users directly edited the topic, those changes will be lost. Can be used multiple times.
466 `topic unlock [channel]`::
467         Set channel mode `-t`, allowing all users to change the topic.
469 .plugins.Topic
470 [frame="topbot"]
471 `15`15`70~~~
472 Key,Default,Description
474 #default,,Default channel topic
475 #format,$topic ($nick),Format for the items
476 #recognizeTopiclen,True,Whether to recognize max topic length given by the server and refuse to set longer topics.
477 #separator,||,Used to concatenate items
478 #undo.max,10,How long undo history to keep
481 .Aliases for partial oer compatibility:
482 ----
483 alias add ta topic add $1
484 alias add td topic delete $1
485 alias add te topic replace $1 $2
486 alias add ts topic swap $1 $2
487 ----
489 ==== Logging ====
491 Logging of channels is provided by the [green]#ChannelLogger# plugin. Various channel-specific configuration items are provided, see `config list plugins.ChannelLogger`.
493 By default logs will go into logs/ChannelLogger/<network>/<channel>/<channel>.log and will be rotated when the default "%d-%a-%Y" (eg. 06-Sat-2008) timestamp rotates. See http://docs.python.org/lib/module-time.html[the python documentation for strftime] for the formatting characters.
495 NOTE: The logs of [green]#ChannelLogger# cannot be searched online. However, other plugins provide some searching functionality. See <<searching-history,Searching the history>>.
497 ==== Auto-ops and voices ====
499 Auto-opping is provided by the [green]#AutoMode# plugin.
501 `load AutoMode`::
502         Loads the [green]#AutoMode# plugin, which works out-of-box. By default it's enabled on all channels and voices/halfops/ops users with respective capabilities. You can enable auto-opping only on some channels by tweaking the config keys below.
504 .plugins.AutoMode
505 [frame="topbot"]
506 `15`15`70~~~
507 Key,Default,Description
509 #enable,True,Whether the plugin is enabled.
510 #fallthrough,False,"If enabled and `op` is False, halfops/voices instead if they are True."
511 #halfop,True,Halfop users with the `halfop` capability.
512 #op,True,"Ditto, but op."
513 #voice,True,"Ditto, but voice."
514 #ban,True,Whether to ban people who join the channel and are on the banlist.
515 #ban.period,86400,How many seconds bans will last.
516 ~~~~
518 [[channel-capabilities]]
519 ==== Manipulating channel capabilities ====
521 `capability list [channel]`::
522         List capabilities on `channel`.
524 `capability set [channel] <capability..>`::
525         Adds the given `capability` to `channel`.
527 `capability unset [channel] <capability..>`::
528         Removes the given `capability` from `channel`.
530 `capability setdefault [channel] <True|False>`::
531         Whether to allow users on `channel` by default to access non-maintenance related commands. Default is True.
532         +
533         Note that this concerns unregistered users as well. So if you want to disallow use of commands by unregistered users, set default user capabilities to allow them, and set this to False.
535 See also <<capabilities,Capabilities>>.
537 === Users ===
539 Related plugins: [green]#Users#.
541 Supybot users are global: they are visible across networks. This means the same username/password and hostmasks will work in all networks the bot is on.
543 Users are recognized either by matching hostmasks, or after manually identifying to the bot. In secure mode, the user must both match a hostmask and identify to the bot (`uset set secure [password] <True|False>`).
545 NOTE: If users knowing each others' nicks is an issue, they could come up with different aliases when registering to the bot. The bot username does not have to match the nick of the user.
547 ==== Adding a new user ====
549 `user register <name> <password>`
551 ==== Manipulating hostmasks ====
553 `user hostmask add` - add your current hostmask. Obviously this makes only sense after identify.
555 `user hostmask add [name] [hostmask] [password]` - add hostmask for another user. If not owner, password must be given.
557 `user hostmask remove <name> <hostmask> [password]`
559 NOTE: There is no way to add network-specific hostmasks.
561 ==== Listing users ====
563 `user list [glob]` - list registered users. Note that the list of users is global across networks.
565 ==== Deleting users ====
567 `user unregister <name> [password]`
569 ==== Changing password ====
571 `user set password <user> <old password> <new password>`.
573 ==== Renaming a user ====
575 `user changename <name> <new name> [password]`
577 Users can change their name themselves.
579 [[user-capabilities]]
580 ==== Manipulating user capabilities ====
582 `capabilities [user]`::
583         List capabilities of the `user`, or the calling user.
585 `admin capability add <user|hostmask> <capability>`::
586         Add `capability` to `user` or a user that matches the `hostmask`.
588 `admin capability remove <user|hostmask> <capability>`::
589         Ditto, but remove the capability.
591 `channel capability add [channel] <nick|user> <capability..>`::
592         Add capability `capability` on `channel` to `nick`/`user`.
594 `channel capability remove [channel] <nick|user> <capability..>`::
595         Remove capability `capability` on `channel` from `nick`/`user`.
597 `defaultcapability <add|remove> <capability>`::
598         Add or remove `capability` from list of capabilities given to new users.
600 `config capabilities`::
601         List default capabilities given to new users.
603 .output
604 ----
605 -owner -admin -trusted
606 ----
608 See also <<capabilities,Capabilities>>.
610 === General bot maintenance ===
612 Related plugins: [green]#Admin, Config#.
614 ==== Setting nickname & alternative nick ====
616 `admin nick <newnick>`::
617         Change nick to `newnick`.
619 `config nick`::
620         Default nick.
622 `config nick.alternates`::
623         Space-separated list of alternate nicks, %s refers to nick.
625 NOTE: It is not possible to have a different nick in different networks.
627 ==== Setting ident ====
629 `config ident <newident>`::
630         Sets the bot's ident (`nick!ident@host`).
632 ==== Setting ircname ====
634 `config user [ircname]`::
635         Sets the bot's ircname/realname to `ircname`. If left empty, defaults to 'Supybot 0.83.3' for example.
637 ==== Setting command prefix / controlling when the bot replies ====
639 Like most other bots, the bot can be addressed by its nickname, or a command prefix character (any or many of `~!@#$%^&*()_-+=[{}]\|'";:,<.>/?`). For special (braindead?) purposes the bot can also be made assume that all lines are addressed to it.
641 `config reply.whenAddressedBy.chars`::
642         List of characters the bot will recognize as addressing, besides the nick of the bot.
644 `config channel [channel] reply.whenAddressedBy.chars`::
645         Ditto, but for a specific channel.
647 `config reply.whenNotAddressed`::
648         Assume everyone wants to talk to the bot, eg. treat all messages as if addressed to the bot. This does not imply `reply.WhenNotCommand False` which you should set as well.
650 `config reply.whenNotCommand`::
651         Whether to reply when addressed with an invalid command.
653 See also: <<config_reply,Configuration: reply>>.
655 ==== Keeping the primary nick ====
657 Like other bots, Supybot can be configured to try and keep the primary nick using the [green]#NickCapture# plugin. This is primarily useful in networks with no NickServ support.
659 `load NickCapture`::
660         Loads the plugin which works without further configuration.
662 `config plugins.NickCapture.ison`::
663         Whether the plugin is actively checking for the primary nick. This setting makes no sense, as you might as well `unload NickCapture` if you think about setting this to false.
665 `config plugins.NickCapture.ison.period`::
666         How many seconds to wait between nick availibity polls. The default is 600 (10 min). The smaller you set this, the higher the chance of the bot recovering the nick when it becomes available. On the other hand, you will also generate more traffic so you might want to avoid that.
668 === Owner commands ===
670 `owner announce <text>` - send `text` to all channels the bot is on.
672 `owner ircquote <raw>` - send `raw` as-is to the server. You need to know your way around http://www.faqs.org/rfcs/rfc1459.html[RFC1459] pretty well to use this.
674 == User commands ==
676 [[searching-history]]
677 === Searching the history ===
679 `url last [channel] [--{from,with,without,near,proto} value] [--nolimit]`::
680         Find last URL (or all with `--nolimit`) matching given criteria. From matches nick, with(out) part of the URL, near rest of the line where the URL was, and proto matches the protocol (https, ftp, etc). In case of multiple URLs, the newest is listed first. Multiple criterias can be given.
682         NOTE: This command lists only the URLs, not nick or what message the URLs were part of. No date is shown either.
684 `last [--from,in,on,with,without,regexp} value] [--nolimit]`::
685         Find messages matching given criteria. From matches nick, in matches channel, on matches network, with(out) matches part of the message, regexp matches messages that are included by the regular expression. Also see `config protocols.irc.maxHistoryLength`.
687 === Useful plugins ===
689 [[plugin_alias]]
690 ==== Alias ====
692 Alias is one of the most powerful plugins available in Supybot. It allows you to set up 'shortcuts' to other commands. When put together with command nesting, and the ability to provide arbitrary number of required and optional arguments to each alias, this becomes a very versatile feature. The main commands in this plugin are `add` and `remove` to add and remove aliases:
694 `add <name> <alias>`::
695          Defines an alias `name` that executes `alias`. The `alias` should be in the standard "command argument [nestedcommand argument]" arguments to the alias; they'll be filled with the first, second, etc. arguments. $1, $2, etc. can be used for required arguments. @1, @2, etc. can be used for optional arguments. $* simply means "all remaining arguments," and cannot be combined with optional arguments.
697 `remove <name>`::
698         Removes the alias named `name`.
700 As a simple example, let's say you want to set up a quick check to see if some website is down, using the downforeveryoneorjustme.com service. See the following example session for how you'd accomlish that:
702 ----
703 <user> alias add isitdown web title http://downforeveryoneorjustme.com/$1
704 <supybot> The operation succeeded.
705 <user> isitdown google.com
706 <supybot> It's just you.
707 ----
709 What this has accomplished is that you don't have to give the full command, which would be `web title http://downforeveryoneorjustme.com/google.com`, instead you now have a quick shortcut to check the status of a site. Aliases get their own help messages, just like all the normal commands, which tell us what got stored in the alias. For example, for the alias above:
711 ----
712 <user> help isitdown
713 <supybot> (isitdown <an alias, 1 argument>) -- Alias for "web title http://downforeveryoneorjustme.com/$1".
714 ----
716 We have introduced the variable substitution feature of aliases here. Note the `$1` in the alias, which means "put the first argument provided to this command right here". You can also have optional arguments, which are represented as `@1`, `@2`, etc. There is also `$*` which acts as a placeholder for "all the remaining arguments", but it cannot be mixed with optional arguments. For example, we can try the following:
718 ----
719 <user> alias add saymoo echo moo $1 @1
720 <supybot> The operation succeeded.
721 <user> help saymoo
722 <supybot> (saymoo <an alias, at least 1 argument>) -- Alias for "echo moo $1 @1".
723 <user> saymoo bla
724 <supybot> moo bla 
725 <user> saymoo bla stuff
726 <supybot> moo bla stuff
727 ----
729 There are some important details to understand when you use nested commands and quotes in your aliases. For example, you might naively try the following:
731 ----
732 <user> alias add test echo [uptime]
733 <supybot> The operation succeeded.
734 <user> help test
735 <supybot> (test <an alias, 0 arguments>) -- Alias for "echo I have been running for 1 day, 14 hours, 46 minutes, and 53 seconds.".
736 ----
738 Notice what happened - the uptime command was executed, then stored into the alias, rather than the actual command nesting getting stored. Every time you call the test command, the output will always be exactly the same. This is probably not what you had in mind. To avoid immediate nested command evaluation, you must put quotes around the argument to alias (or around the argument to echo). Like so:
740 ----
741 <user> alias add test "echo [uptime]"
742 <supybot> The operation succeeded.
743 <user> help test
744 <supybot> (test <an alias, 0 arguments>) -- Alias for "echo [uptime]".
745 <user> test
746 <supybot> I have been running for 1 day, 14 hours, 50 minutes, and 19 seconds.
747 ----
749 There, much better!
751 Another issue we'll want to address is, what if you want literal quotes in your alias output? For example, say you want an alias that would give the following output:
753 ----
754 <user> test
755 <supybot> bla "moo" bla
756 ----
758 We are going to use the `echo` command from the 'Utilities' plugin, which lets the user make the bot say any string. Our first naive try may be the following:
760 ----
761 <user> alias add test echo bla "moo" bla
762 <supybot> The operation succeeded.
763 <user> help test
764 <supybot> (test <an alias, 0 arguments>) -- Alias for "echo bla moo bla".
765 <user> test
766 <supybot> bla moo bla
767 ----
769 Doesn't work. The quotes are simply taken as quoting an argument, and don't make it into the alias. Let's try escaping the quotes and see what happens.
771 ----
772 <user> alias add test echo bla \"moo\" bla
773 <supybot> The operation succeeded.
774 <user> help test
775 <supybot> (test <an alias, 0 arguments>) -- Alias for "echo bla \"moo\" bla".
776 <user> test
777 <supybot> bla \"moo\" bla
778 ----
780 Closer, but still no cigar - this is because of the way supybot argument parsing works - unquoted arguments get taken as string literals, while quoted arguments get string parsing done on them. Compare the two outputs below:
782 ----
783 <user> echo bla\"bla
784 <supybot> bla\"bla
785 <user> echo "bla\"bla"
786 <supybot> bla"bla
787 ----
789 Raw unquoted string is taken as a literal, while the quoted string interprets the `\"` sequence as an escaped quote character. This is what we want. Our goal is, then, to get the string `echo "bla \"moo\" bla"` as the content of our alias.
791 Our final, successful, try follows:
793 ----
794 <user> alias add test "echo \"bla \\\"moo\\\" bla\""
795 <supybot> The operation succeeded.
796 <user> test
797 <supybot> bla "moo" bla
798 <user> help test
799 <supybot> (test <an alias, 0 arguments>) -- Alias for "echo "bla \"moo\" bla"".
800 ----
802 Note what is happening here. First, we quote the entire content of the alias as an argument, to get string parsing going. We escape the quote character before bla, to get a literal quote character into the alias string. We then triple-escape the second quote character. `\\` gets a literal backslash into our alias string, while the following `\"` gets a literal quote. We do the same thing for the closing quotation around `moo`. Finally, we stick in another literal quote to finish quoting the argument to echo, and at the end, close the exterior quotation pair.
804 Quite a bit of detail here - but necessary to know if you're going to be using aliases to perform complex tasks.
806 [[plugin_anonymous]]
807 ==== Anonymous ====
809 Allows you to provide users a way to chat on a channel anonymously (eg. only the bot owner(s) know via logs who are talking).
811 `do <channel> <action>`::
812         Sends `action` to `channel`. This is the same as a normal IRC client `/me does something` command.
814 `say <channel> <text>`::
815         Say `text` on `channel`.
817 .plugins.Anonymous
818 `15`15`70~~~
819 Key,Default,Description
821 #requirePresenceInChannel,True,Whether the user must be in the channel the message is targeted to.
822 allowPrivateTarget,False,Whether to allow a nick as a target for say. NOTE: This has not been implemented in 0.83.3 although it exists!
823 requireCapability,,"If set, capability to check for."
824 requireRegistration,True,Whether registration is required to use this plugin.
827 [[plugin_dict]]
828 ==== Dict ====
830 [green]#Dict# provides dictionary functionality using dict.org. You can also use a local dictd server.
832 `dict [dictionary] <word>`::
833         Show dictionary entry for `word`, from `dictionary` if provided. If `plugins.Dict.default` is set, use the specified dictionary instead of all.
835 `dictionaries`::
836         List dictionaries available on the used server.
838 `dict random`::
839         Show a random dictionary from available dictionaries.
841 `config plugins.Dict.server [server]`::
842         The dictd server to be used, default is dict.org.
844 `config plugins.Dict.default [dictionary]`::
845         Channel-specific default dictionary for `dict` command. `*` means to use all dictionaries. `wn` is a good default if english words are mostly looked up.
847 [[plugin_later]]
848 ==== Later ====
850 This is a nick-based replacement for NoteServ and the likes. Simply put, you give the bot a note to deliver to a nick (or wildcard) the next time it sees a matching nick. In other words, this can be used to deliver messages to people who are not registered to the bot. Naturally that is not a very safe method of communicating.
852 `notes [nick]`::
853         List nicks that have notes queued, or the notes queued for `nick` if given.
855 `later tell <nick> <text>`::
856         Queues `text` to be sent to first matching `nick` when seen. Nick can contain wildcards, eg. `foo*`.
858 `config plugins.Later.maximum`::
859         How many messages can be queued per nick at maximum, default is 0 = no limit.
861 `config plugins.Later.private`::
862         Whether to send notes in private or on the channel where the recipient is seen.
864 [[plugin_moobotfactoids]]
865 ==== MoobotFactoids ====
867 MoobotFactoids implements nifty factoids.
869 ----
870 <user> !supybook is <reply> Please read http://supybook.fealdia.org/ before asking.
871 <bot> OK
872 <user> !supybook
873 <bot> Please read http://supybook.fealdia.org/ before asking.
874 ----
876 .Setting up
877 ----
878 config databases [config databases] sqlite
879 load moobotfactoids
880 ----
882 NOTE: If you get any of the following errors, you need to install sqlite, python-sqlite and python-pysqlite.
884 ----
885 NoSuitableDatabase: No suitable databases were found.  Suitable databases include sqlite.
886 Error: You need to have PySQLite installed to use this plugin.  Download it at <http://pysqlite.org/>
887 ----
889 [[plugin_seen]]
890 ==== Seen ====
892 The [green]#Seen# plugin keeps track of last channel/nick/user activity. Most typical use is asking the bot when a given user was last seen chatting on a channel.
894 `seen any [channel] [--user <user>] [nick]`::
895         Lists any activity given `nick` or `user` was doing on the channel. If no `nick` or `user` is given, returns the last activity on the channel, regardless of who it was from.
897 `seen last [channel]`::
898         Last line said on the channel.
900 `seen [channel] <nick>`::
901         Last time a `nick` was seen on a channel and what it said.
903 `seen user [channel] <user>`:
904         Ditto, except use a user name, disregarding what nick the said user had.
906 [[plugin_web]]
907 ==== Web ====
909 The [green]#Web# plugin contains some useful WWW-related functionality, such as fetching titles for URLs users paste on the channel.
911 `doctype <url>`::
912         Show the doctype line of `url`, if any.
914 `fetch <url>`::
915         Show the contents of `url`. Amount of data shown is determined by the configuration variable `plugins.Web.fetch.maximum`.
917 `headers <url>`::
918         Show web server headers for the `url`.
920 `netcraft <hostname|ip>`::
921         Ask netcraft what OS and web server it thinks the server is running.
923 `size <url>`::
924         Show size of `url`, based on the `Content-Length` header sent by the web server.
926 `title <url>`::
927         Show title for `url`. This can be done automatically for all URLs pasted on a channel; see the configuration variable `plugins.Web.titleSnarfer`.
929 `urlquote <text>`::
930         Return `text` quoted into a URL. Eg. `urlquote foo bar` -> `foo%20bar`.
932 `urlunquote <text>`::
933         Likewise, but reverse.
935 .plugins.Web
936 [frame="topbot"]
937 `15`15`70~~~
938 Key,Default,Description
939 ~~~~
940 #nonSnarfingRegexp,,"if set, URLs matching the pattern are not snarfed."
941 #titleSnarfer,false,Whether to fetch and show the title for pasted URLs.
942 fetch.maximum,0,"Maximum bytes to fetch with the `fetch` command. If zero, `fetch` is disabled."
943 ~~~~
945 === Entertainment ===
947 [[plugin_channelstats]]
948 ==== ChannelStats ====
950 [green]#ChannelStats# provides channel/registered user statistics (statistics as in 'large numbers').
952 `channelstats [channel]`:
953         Show statistics for `channel`: messages, characters, words, smileys, frowns, actions, joins, parts, quits, kicks, mode changes, and topic changes.
955 `stats [channel] [user]`:
956         Show statistics for `user` on `channel`: messages, characters, words, smileys, frowns, actions, joins, parts, quits, kicks given/received, topic changes, and mode changes.
958 WARNING: This plugin may turn otherwise normal users into spammers. But it can also provide an incentive to register on the bot. :-)
960 .plugins.ChannelStats
961 [frame="topbot"]
962 `15`15`70~~~
963 Key,Default,Description
965 #frowns,`:| :-/ :-\ :\ :/ :( :-( :'(`,Space-separated list of frowns.
966 #selfStats,`True`,Whether to include the bot in the statistics.
967 #smileys,`:) ;) ;] :-) :-D :D :P :p (= =)`,Space-separated list of smileys.
968 ~~~~
970 [[plugin_games]]
971 ==== Games ====
973 `coin`::
974         Heads or tails?
976 `dice <dices>d<sides>`::
977         Roll `dices` dices, each having `sides` sides. Lists result for each dice separately. The sum will be between `dices` and `dices` x `sides`.
979 `eightball [question]`::
980         Answers a question. But don't expect the bot to pass 
982 `monologue [channel]`::
983         Check how long your monologue on the `channel` is, in case you are lose count. This is probably my favourite useless command.
985 `roulette ["spin"]`::
986         Russian roulette. If `spin` is given, spins the chambers. This isn't really necessary since it will be done automatically at the end of the round. Provides a different experience if the bot is opped.
989 [[plugin_nickometer]]
990 ==== Nickometer ====
992 `nickometer [nick]`:
993         Give an objective evaluation on the lameness of `nick`, or your nick if not provided. This is similar to the same command in blootbot.
995 .output
996 ----
997 The "lame nick-o-meter" reading for "1eEteStWaReZL0rD[69X~" is 99.98%.
998 ----
1000 [[plugin_quote]]
1001 ==== Quote ====
1003 `quote add [channel] <text>`::
1004         Add `text` as a quote for `channel`.
1006 `quote change [channel] <id> <regexp>`::
1007         Change quote `id` on `channel` using `regexp`. For example, `s/foo/bar/g` changes all instances of `foo` to `bar`.
1009 `quote get [channel] <id>`::
1010         Show quote # `id` for `channel`.
1012 `quote random [channel]`::
1013         Show random quote from `channel`.
1015 `quote remove [channel] <id>`::
1016         Remove quote # `id` from `channel`.
1018 `quote search [channel] [--{regexp,by} value] [glob]`::
1019         Find quotes from `channel` matching regexp if provided, added by nick `by` if provided, and matching `glob` if provided. `glob` may contain wildcards (eg. `foo*bar`), while `regexp` is a regular expression (eg. `/la.*laa/`). Note that you can really provide both regexp and the glob - both must match in that case.
1021 `quote stats [channel]`::
1022         Show how many quotes there are.
1024 [[plugin_quotegrabs]]
1025 ==== QuoteGrabs ====
1027 This plugin allows users to 'grab' the most recent line of another nick as a quote.
1029 `quotegrabs get [channel] <id>`::
1030         Show quote # `id` .
1032 `quotegrabs grab [channel] <nick>`::
1033         Save last line from `nick` as a quote.
1035 `quotegrabs list [channel] <nick>`::
1036         List quotes for `nick`, newest first. This does not display full quotes, but part of each, along with the id.
1038 `quotegrabs quote [channel] <nick>`::
1039         Show last quote of `nick`.
1041 `quotegrabs random [channel] [nick]`::
1042         Random quote from any nick, or `nick` if provided.
1044 `quotegrabs search [channel] <text>`::
1045         Show quotes containing `text`. Unfortunately, this does not list the nick or allow searching only given nick's quotes. Id and quote content will be shown.
1047 .plugins.QuoteGrabs
1048 [frame="topbot"]
1049 `15`15`70~~~
1050 Key,Default,Description
1052 #randomGrabber,False,Whether to grab random lines as quotes.
1053 #randomGrabber.averageTimeBetweenGrabs,864000,Average number of seconds to wait between random grabs. When half of this has passed a random grab may occur.
1054 randomGrabber.minimumCharacters,8,Minimum characters needed to consider a line eligible for random grab.
1055 randomGrabber.minimumWords,3,"Ditto, but for words."
1056 ~~~~
1058 === Third-party plugins ===
1060 [[plugin_messageparser]]
1061 ==== MessageParser ====
1063 ----
1064 <user> your question is covered in the ,,supybook
1065 <supybot> Follow this link to the supybook, a supybot handbook: http://supybook.fealdia.org/
1067 <user> I'd like a ,,(factoids search *) please
1068 <supybot> 'conditional', 'ggc', 'ggr', 'git', 'gitrepo', 'gribblegitcontent', 'gribblegitrepo'
1069 ----
1071 MessageParser allows adding regular expression triggers that can match any line. Multiple triggers can match a single line, and the same trigger can match several times. This plugin is a very useful addition for support channels.
1073 Visit the http://sourceforge.net/apps/mediawiki/gribble/index.php?title=MessageParser_Plugin[MessageParser wiki] for more information.
1075 == Caveats ==
1077 This is a list of issues I have not yet figured out how to do, or there simply isn't a way.
1079 - How to enforce channel modes (eg. force +ns-t for example)
1080 - How to delete config items
1081 - How to delete channels / networks
1082 - Ban add does not seem to work on Freenode
1083 - No global ban list
1084 - No way to delete a network
1085 - Incomplete multi-network support
1086         * Capabilities are not network/channel -specific, but channel-specific. If channel by same name exists in two networks, the users have same capabilities on both
1087         * No way to add network-specific hostmasks
1088         * Not possible for the bot to have different nick in different networks
1089 - There is no command to reboot the bot; it must be done from the shell
1090 - Capabilities/anticapabilities for commands with spaces in them are not supported
1092 == Tips ==
1094 === How to emulate blootbot CMDs using MoobotFactoids ===
1096 [,yellow]#Thanks to Tobias "beardy" Rosenqvist for the tip!#
1098 We try to make a command factoid, like we are used to with blootbot:
1100 ----
1101 <user> cmdtest is <action> gives $1 "(an apple|a pear)"
1102 <bot> Ok.
1103 ----
1105 Then we test it:
1107 ----
1108 <user> cmdtest someone
1109 ----
1111 But it doesn't work.
1112 However, the factoid works:
1114 ----
1115 <user> cmdtest
1116   * bot gives $1 an apple
1117 ----
1119 The Moobotfactoids plugin in supybot doesn't handle arguments, (yet)
1120 unfortunately, so you need to do it another way.
1121 Use the Moobotfactoids to do the random part(s):
1123 ----
1124 <user> fruits is <reply> "(an apple|an orange|a banana|a pear)"
1125 <bot> Ok.
1126 ----
1128 Then use an alias to do the command, with arguments (the "action" command
1129 is found in the Reply plugin), here you also see a use of a nested command:
1131 ----
1132 <user> alias add givefruit action gives "[fruits]" to $1
1133 <bot> Ok.
1134 <user> givefruit someone
1135  * bot gives a pear to someone
1136 ----
1138 === Tidier bot replies ===
1140 I don't personally like the default Supybot replies: I hate the nick prefix and the way too verbose 'The operation succeeded.'.
1142 Fortunately there are plenty of settings to configure how Supybot replies. These can be listed with `config reply` and `config replies`.
1144 The `reply` items determine how Supybot acts, and `replies` contains some messages it uses. I prefer:
1146 `config reply.withNickPrefix False`
1148 `config replies.success OK`
1150 `config reply.error.inPrivate True`.
1152 === More on nested commands ===
1154 [,yellow]#Thanks to Tobias "beardy" Rosenqvist for the tip!#
1156 For those familliar with unix shells, (bash in particular), nested commands can be compared to doing command substitution, as in `$(command)`.
1158 Nested commands are by default enclosed by square brackets (`[]`). The `commands.nested.brackets` configuration variable can be used to set these to `<>`, `{}`, or `()`.
1160 ----
1161 <user> echo The title of the Supybot website is: [web title http://www.supybot.com/]
1162 <bot> The title of the Supybot website is: Welcome to Supybot.com! Supybot Website
1163 ----
1165 Another way nested commands can work, is like a pipe, if the configuration variable `commands.nested.pipeSyntax` is set to `True`.
1167 Same example as above, but using the pipeSyntax:
1169 ----
1170 <user> web title http://www.supybot.com/ | echo The title of the Supybot website is:
1171 <bot> The title of the Supybot website is: Welcome to Supybot.com! Supybot Website
1172 ----
1174 == Reference ==
1176 === Configuration ===
1178 [[config_reply]]
1179 ==== reply ====
1181 *#inPrivate*:: Whether to reply in private to commands given on channel.
1183 *#requireChannelCommandsToBeSentInChannel*:: -
1185 *#showSimpleSyntax*:: Whether to be extra helpful when a user fails syntax of a command.
1187 *#whenNotAddressed*:: Assume everyone wants to talk to the bot, eg. treat all messages as if addressed to the bot. This does not imply `reply.WhenNotCommand False` which you should set as well.
1189 *#whenNotCommand*:: Whether to reply when addressed with an invalid command.
1191 *#withNickPrefix*:: Whether to prefix the reply with the nick of the user who gave the command.
1193 *#withNotice*:: Whether to use notices instead of regular messages.
1195 *#mores.instant*:: How many messages to send initially before prompting for `more`. Default is 1.
1197 *#mores.length*:: How long messages can be. Default is 0, which uses rocket science to determine the maximum number of characters that can be fit into a message without it collapsing into a black hole.
1199 *#mores.maximum*:: Maximum number of messages to queue, default is 50.
1201 *#error.inPrivate*:: Whether to send errors in private instead of replying on channel.
1203 *#error.noCapability*:: If True, don't tell users why they can not run a command because of missing capabilities.
1205 *#error.withNotice*:: Whether to send errors as notices instead of regular messages.
1207 *error.detailed*:: Whether to show an exception or a generic error when something breaks. Mostly useful for developers.
1209 *#format.time*:: Format string for timestamps (`%I:%M %p, %B %d, %Y`, eg. '08:41 PM, September 11, 2008').
1211 *#whenAddressedBy.chars*:: List of characters the bot will recognize as addressing (when a command is prefixed with one of them), besides the nick of the bot.
1213 *#whenAddressedBy.nicks*:: List of extra nicks to consider as addressing the bot, despite the current nick.
1215 *#whenAddressedBy.strings*:: Like the chars key, except a space-separated list of strings to accept as command prefix. This allows multicharacter command prefixes.
1217 *#whenAddressedBy.nick.atEnd*:: Whether to consider messages that end in the bot's nick to be addressed to the bot.
1219 *maximumLength*:: Maximum length of a reply message from the bot. This does not mean the length of a single message (prompting for `more`), but the whole message.
1221 *oneToOne*:: Whether to send replies consisting of multiple messages in a single message.
1223 *withNoticeWhenPrivate*:: Whether to use notices instead of private messages.
1225 === Directory tree ===
1227 This section contains list of the directories and files supybot uses, and what they are for.
1229 NOTE: If you modify the configuration files by hand when the bot is running, you need to run `config reload`.
1231 `backup/`::
1232         For backups of config files.
1234 `conf/`::
1235         Configuration files: {channels,ignores,userdata,users}.conf
1237 `data/`::
1238         Plugin databases.
1240 `data/#channel/`::
1241         Channel-specific plugin databases.
1243 `data/tmp/`::
1244         Temporary plugin data files (eg. database journals).
1246 `logs/`::
1247         Logs.
1249 `logs/ChannelLogger/`::
1250         ChannelLogger logs. The structure depends on the config variables.
1252 `logs/messages.log`::
1253         The main logfile.
1255 `plugins/`::
1256         Local plugin directory. This is by default listed in `config directories.plugins`.
1258 `<bot>.conf`::
1259         The main configuration file of the bot.
1261 `tmp/`::
1262         Temporary files.