Cover the topic plugin configs as well.
[supybook.git] / index.txt
blobcecad75a99ca6c0e4467418b2a199fefb108f789
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_anonymous]]
690 ==== Anonymous ====
692 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).
694 `do <channel> <action>`::
695         Sends `action` to `channel`. This is the same as a normal IRC client `/me does something` command.
697 `say <channel> <text>`::
698         Say `text` on `channel`.
700 .plugins.Anonymous
701 `15`15`70~~~
702 Key,Default,Description
704 #requirePresenceInChannel,True,Whether the user must be in the channel the message is targeted to.
705 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!
706 requireCapability,,"If set, capability to check for."
707 requireRegistration,True,Whether registration is required to use this plugin.
710 [[plugin_dict]]
711 ==== Dict ====
713 [green]#Dict# provides dictionary functionality using dict.org. You can also use a local dictd server.
715 `dict [dictionary] <word>`::
716         Show dictionary entry for `word`, from `dictionary` if provided. If `plugins.Dict.default` is set, use the specified dictionary instead of all.
718 `dictionaries`::
719         List dictionaries available on the used server.
721 `dict random`::
722         Show a random dictionary from available dictionaries.
724 `config plugins.Dict.server [server]`::
725         The dictd server to be used, default is dict.org.
727 `config plugins.Dict.default [dictionary]`::
728         Channel-specific default dictionary for `dict` command. `*` means to use all dictionaries. `wn` is a good default if english words are mostly looked up.
730 [[plugin_later]]
731 ==== Later ====
733 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.
735 `notes [nick]`::
736         List nicks that have notes queued, or the notes queued for `nick` if given.
738 `later tell <nick> <text>`::
739         Queues `text` to be sent to first matching `nick` when seen. Nick can contain wildcards, eg. `foo*`.
741 `config plugins.Later.maximum`::
742         How many messages can be queued per nick at maximum, default is 0 = no limit.
744 `config plugins.Later.private`::
745         Whether to send notes in private or on the channel where the recipient is seen.
747 [[plugin_seen]]
748 ==== Seen ====
750 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.
752 `seen any [channel] [\--user <user>] [nick]`::
753         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.
755 `seen last [channel]`::
756         Last line said on the channel.
758 `seen [channel] <nick>`::
759         Last time a `nick` was seen on a channel and what it said.
761 `seen user [channel] <user>`:
762         Ditto, except use a user name, disregarding what nick the said user had.
764 [[plugin_web]]
765 ==== Web ====
767 The [green]#Web# plugin contains some useful WWW-related functionality, such as fetching titles for URLs users paste on the channel.
769 `doctype <url>`::
770         Show the doctype line of `url`, if any.
772 `fetch <url>`::
773         Show the contents of `url`. Amount of data shown is determined by the configuration variable `plugins.Web.fetch.maximum`.
775 `headers <url>`::
776         Show web server headers for the `url`.
778 `netcraft <hostname|ip>`::
779         Ask netcraft what OS and web server it thinks the server is running.
781 `size <url>`::
782         Show size of `url`, based on the `Content-Length` header sent by the web server.
784 `title <url>`::
785         Show title for `url`. This can be done automatically for all URLs pasted on a channel; see the configuration variable `plugins.Web.titleSnarfer`.
787 `urlquote <text>`::
788         Return `text` quoted into a URL. Eg. `urlquote foo bar` -> `foo%20bar`.
790 `urlunquote <text>`::
791         Likewise, but reverse.
793 .plugins.Web
794 [frame="topbot"]
795 `15`15`70~~~
796 Key,Default,Description
797 ~~~~
798 #nonSnarfingRegexp,,"if set, URLs matching the pattern are not snarfed."
799 #titleSnarfer,false,Whether to fetch and show the title for pasted URLs.
800 fetch.maximum,0,"Maximum bytes to fetch with the `fetch` command. If zero, `fetch` is disabled."
801 ~~~~
803 === Entertainment ===
805 [[plugin_channelstats]]
806 ==== ChannelStats ====
808 [green]#ChannelStats# provides channel/registered user statistics (statistics as in 'large numbers').
810 `channelstats [channel]`:
811         Show statistics for `channel`: messages, characters, words, smileys, frowns, actions, joins, parts, quits, kicks, mode changes, and topic changes.
813 `stats [channel] [user]`:
814         Show statistics for `user` on `channel`: messages, characters, words, smileys, frowns, actions, joins, parts, quits, kicks given/received, topic changes, and mode changes.
816 WARNING: This plugin may turn otherwise normal users into spammers. But it can also provide an incentive to register on the bot. :-)
818 .plugins.ChannelStats
819 [frame="topbot"]
820 `15`15`70~~~
821 Key,Default,Description
823 #frowns,`:| :-/ :-\ :\ :/ :( :-( :'(`,Space-separated list of frowns.
824 #selfStats,`True`,Whether to include the bot in the statistics.
825 #smileys,`:) ;) ;] :-) :-D :D :P :p (= =)`,Space-separated list of smileys.
826 ~~~~
828 [[plugin_games]]
829 ==== Games ====
831 `coin`::
832         Heads or tails?
834 `dice <dices>d<sides>`::
835         Roll `dices` dices, each having `sides` sides. Lists result for each dice separately. The sum will be between `dices` and `dices` x `sides`.
837 `eightball [question]`::
838         Answers a question. But don't expect the bot to pass 
840 `monologue [channel]`::
841         Check how long your monologue on the `channel` is, in case you are lose count. This is probably my favourite useless command.
843 `roulette ["spin"]`::
844         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.
846 [[plugin_nickometer]]
847 ==== Nickometer ====
849 `nickometer [nick]`:
850         Give an objective evaluation on the lameness of `nick`, or your nick if not provided. This is similar to the same command in blootbot.
852 .output
853 ----
854 The "lame nick-o-meter" reading for "1eEteStWaReZL0rD[69X~" is 99.98%.
855 ----
857 [[plugin_quote]]
858 ==== Quote ====
860 `quote add [channel] <text>`::
861         Add `text` as a quote for `channel`.
863 `quote change [channel] <id> <regexp>`::
864         Change quote `id` on `channel` using `regexp`. For example, `s/foo/bar/g` changes all instances of `foo` to `bar`.
866 `quote get [channel] <id>`::
867         Show quote # `id` for `channel`.
869 `quote random [channel]`::
870         Show random quote from `channel`.
872 `quote remove [channel] <id>`::
873         Remove quote # `id` from `channel`.
875 `quote search [channel] [\--{regexp,by} value] [glob]`::
876         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.
878 `quote stats [channel]`::
879         Show how many quotes there are.
881 [[plugin_quotegrabs]]
882 ==== QuoteGrabs ====
884 This plugin allows users to 'grab' the most recent line of another nick as a quote.
886 `quotegrabs get [channel] <id>`::
887         Show quote # `id` .
889 `quotegrabs grab [channel] <nick>`::
890         Save last line from `nick` as a quote.
892 `quotegrabs list [channel] <nick>`::
893         List quotes for `nick`, newest first. This does not display full quotes, but part of each, along with the id.
895 `quotegrabs quote [channel] <nick>`::
896         Show last quote of `nick`.
898 `quotegrabs random [channel] [nick]`::
899         Random quote from any nick, or `nick` if provided.
901 `quotegrabs search [channel] <text>`::
902         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.
904 .plugins.QuoteGrabs
905 [frame="topbot"]
906 `15`15`70~~~
907 Key,Default,Description
909 #randomGrabber,False,Whether to grab random lines as quotes.
910 #randomGrabber.averageTimeBetweenGrabs,864000,Average number of seconds to wait between random grabs. When half of this has passed a random grab may occur.
911 randomGrabber.minimumCharacters,8,Minimum characters needed to consider a line eligible for random grab.
912 randomGrabber.minimumWords,3,"Ditto, but for words."
913 ~~~~
915 == Caveats ==
917 This is a list of issues I have not yet figured out how to do, or there simply isn't a way.
919 - How to enforce channel modes (eg. force +ns-t for example)
920 - How to delete config items
921 - How to delete channels / networks
922 - Ban add does not seem to work on Freenode
923 - No global ban list
924 - No way to delete a network
925 - Incomplete multi-network support
926         * 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
927         * No way to add network-specific hostmasks
928         * Not possible for the bot to have different nick in different networks
929 - There is no command to reboot the bot; it must be done from the shell
930 - Capabilities/anticapabilities for commands with spaces in them are not supported
932 == Tips ==
934 === How to emulate blootbot CMDs using MoobotFactoids ===
936 [,yellow]#Thanks to Tobias "beardy" Rosenqvist for the tip!#
938 We try to make a command factoid, like we are used to with blootbot:
940 ----
941 <user> cmdtest is <action> gives $1 "(an apple|a pear)"
942 <bot> Ok.
943 ----
945 Then we test it:
947 ----
948 <user> cmdtest someone
949 ----
951 But it doesn't work.
952 However, the factoid works:
954 ----
955 <user> cmdtest
956   * bot gives $1 an apple
957 ----
959 The Moobotfactoids plugin in supybot doesn't handle arguments, (yet)
960 unfortunately, so you need to do it another way.
961 Use the Moobotfactoids to do the random part(s):
963 ----
964 <user> fruits is <reply> "(an apple|an orange|a banana|a pear)"
965 <bot> Ok.
966 ----
968 Then use an alias to do the command, with arguments (the "action" command
969 is found in the Reply plugin), here you also see a use of a nested command:
971 ----
972 <user> alias add givefruit action gives "[fruits]" to $1
973 <bot> Ok.
974 <user> givefruit someone
975  * bot gives a pear to someone
976 ----
978 === Tidier bot replies ===
980 I don't personally like the default Supybot replies: I hate the nick prefix and the way too verbose 'The operation succeeded.'.
982 Fortunately there are plenty of settings to configure how Supybot replies. These can be listed with `config reply` and `config replies`.
984 The `reply` items determine how Supybot acts, and `replies` contains some messages it uses. I prefer:
986 `config reply.withNickPrefix False`
988 `config replies.success OK`
990 `config reply.error.inPrivate True`.
992 === More on nested commands ===
994 [,yellow]#Thanks to Tobias "beardy" Rosenqvist for the tip!#
996 For those familliar with unix shells, (bash in particular), nested commands can be compared to doing command substitution, as in `$(command)`.
998 Nested commands are by default enclosed by square brackets (`[]`). The `commands.nested.brackets` configuration variable can be used to set these to `<>`, `{}`, or `()`.
1000 ----
1001 <user> echo The title of the Supybot website is: [web title http://www.supybot.com/]
1002 <bot> The title of the Supybot website is: Welcome to Supybot.com! Supybot Website
1003 ----
1005 Another way nested commands can work, is like a pipe, if the configuration variable `commands.nested.pipeSyntax` is set to `True`.
1007 Same example as above, but using the pipeSyntax:
1009 ----
1010 <user> web title http://www.supybot.com/ | echo The title of the Supybot website is:
1011 <bot> The title of the Supybot website is: Welcome to Supybot.com! Supybot Website
1012 ----
1014 == Reference ==
1016 === Configuration ===
1018 [[config_reply]]
1019 ==== reply ====
1021 *#inPrivate*:: Whether to reply in private to commands given on channel.
1023 *#requireChannelCommandsToBeSentInChannel*:: -
1025 *#showSimpleSyntax*:: Whether to be extra helpful when a user fails syntax of a command.
1027 *#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.
1029 *#whenNotCommand*:: Whether to reply when addressed with an invalid command.
1031 *#withNickPrefix*:: Whether to prefix the reply with the nick of the user who gave the command.
1033 *#withNotice*:: Whether to use notices instead of regular messages.
1035 *#mores.instant*:: How many messages to send initially before prompting for `more`. Default is 1.
1037 *#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.
1039 *#mores.maximum*:: Maximum number of messages to queue, default is 50.
1041 *#error.inPrivate*:: Whether to send errors in private instead of replying on channel.
1043 *#error.noCapability*:: If True, don't tell users why they can not run a command because of missing capabilities.
1045 *#error.withNotice*:: Whether to send errors as notices instead of regular messages.
1047 *error.detailed*:: Whether to show an exception or a generic error when something breaks. Mostly useful for developers.
1049 *#format.time*:: Format string for timestamps (`%I:%M %p, %B %d, %Y`, eg. '08:41 PM, September 11, 2008').
1051 *#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.
1053 *#whenAddressedBy.nicks*:: List of extra nicks to consider as addressing the bot, despite the current nick.
1055 *#whenAddressedBy.strings*:: Like the chars key, except a space-separated list of strings to accept as command prefix. This allows multicharacter command prefixes.
1057 *#whenAddressedBy.nick.atEnd*:: Whether to consider messages that end in the bot's nick to be addressed to the bot.
1059 *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.
1061 *oneToOne*:: Whether to send replies consisting of multiple messages in a single message.
1063 *withNoticeWhenPrivate*:: Whether to use notices instead of private messages.
1065 === Directory tree ===
1067 This section contains list of the directories and files supybot uses, and what they are for.
1069 NOTE: If you modify the configuration files by hand when the bot is running, you need to run `config reload`.
1071 `backup/`::
1072         For backups of config files.
1074 `conf/`::
1075         Configuration files: {channels,ignores,userdata,users}.conf
1077 `data/`::
1078         Plugin databases.
1080 `data/#channel/`::
1081         Channel-specific plugin databases.
1083 `data/tmp/`::
1084         Temporary plugin data files (eg. database journals).
1086 `logs/`::
1087         Logs.
1089 `logs/ChannelLogger/`::
1090         ChannelLogger logs. The structure depends on the config variables.
1092 `logs/messages.log`::
1093         The main logfile.
1095 `plugins/`::
1096         Local plugin directory. This is by default listed in `config directories.plugins`.
1098 `<bot>.conf`::
1099         The main configuration file of the bot.
1101 `tmp/`::
1102         Temporary files.