3 Heikki Hokkanen <hoxu@users.sf.net>
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.
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`.
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]`.
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:
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:
65 > @reboot screen -d -m supybot /path/to/configFile
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 ;-)
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:
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".
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.
111 List currently loaded plugins, excluding the ones set non-public.
114 List loaded plugins that are set to non-public.
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`.
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 '#'.
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`.
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.
166 Key,Default,Description
168 foo,True,Example key.
169 #bar,False,Example key that can be set on channels as well.
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:
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.
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.
192 Channel ops can execute channel-related commands.
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 ==
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 ====
223 List of networks & servers currently connected to.
227 freenode: wolfe.freenode.net and ircnet: irc.elisa.fi
230 `config list 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`
245 chat.freenode.net:6667
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
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.
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 ====
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...]`::
338 `voice [channel] [nick...]`::
339 Voices the given nicks (or you if none) on the channel.
341 `devoice [channel] [nick...]`::
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]`::
356 `topic lock [channel]`::
357 Set +t. Not enforced, so any channel op can remove it.
359 `topic unlock [channel]`::
362 `alert [channel] <text>`::
363 Sends `text` to all users on the channel with op capability.
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 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]`::
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.
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.
471 Logging of channels is provided by the [green]#ChannelLogger# plugin. Various channel-specific configuration items are provided, see `config list plugins.ChannelLogger`.
473 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.
475 NOTE: The logs of [green]#ChannelLogger# cannot be searched online. However, other plugins provide some searching functionality. See <<searching-history,Searching the history>>.
477 ==== Auto-ops and voices ====
479 Auto-opping is provided by the [green]#AutoMode# plugin.
482 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.
487 Key,Default,Description
489 #enable,True,Whether the plugin is enabled.
490 #fallthrough,False,"If enabled and `op` is False, halfops/voices instead if they are True."
491 #halfop,True,Halfop users with the `halfop` capability.
492 #op,True,"Ditto, but op."
493 #voice,True,"Ditto, but voice."
494 #ban,True,Whether to ban people who join the channel and are on the banlist.
495 #ban.period,86400,How many seconds bans will last.
498 [[channel-capabilities]]
499 ==== Manipulating channel capabilities ====
501 `capability list [channel]`::
502 List capabilities on `channel`.
504 `capability set [channel] <capability..>`::
505 Adds the given `capability` to `channel`.
507 `capability unset [channel] <capability..>`::
508 Removes the given `capability` from `channel`.
510 `capability setdefault [channel] <True|False>`::
511 Whether to allow users on `channel` by default to access non-maintenance related commands. Default is True.
513 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.
515 See also <<capabilities,Capabilities>>.
519 Related plugins: [green]#Users#.
521 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.
523 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>`).
525 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.
527 ==== Adding a new user ====
529 `user register <name> <password>`
531 ==== Manipulating hostmasks ====
533 `user hostmask add` - add your current hostmask. Obviously this makes only sense after identify.
535 `user hostmask add [name] [hostmask] [password]` - add hostmask for another user. If not owner, password must be given.
537 `user hostmask remove <name> <hostmask> [password]`
539 NOTE: There is no way to add network-specific hostmasks.
541 ==== Listing users ====
543 `user list [glob]` - list registered users. Note that the list of users is global across networks.
545 ==== Deleting users ====
547 `user unregister <name> [password]`
549 ==== Changing password ====
551 `user set password <user> <old password> <new password>`.
553 ==== Renaming a user ====
555 `user changename <name> <new name> [password]`
557 Users can change their name themselves.
559 [[user-capabilities]]
560 ==== Manipulating user capabilities ====
562 `capabilities [user]`::
563 List capabilities of the `user`, or the calling user.
565 `admin capability add <user|hostmask> <capability>`::
566 Add `capability` to `user` or a user that matches the `hostmask`.
568 `admin capability remove <user|hostmask> <capability>`::
569 Ditto, but remove the capability.
571 `channel capability add [channel] <nick|user> <capability..>`::
572 Add capability `capability` on `channel` to `nick`/`user`.
574 `channel capability remove [channel] <nick|user> <capability..>`::
575 Remove capability `capability` on `channel` from `nick`/`user`.
577 `defaultcapability <add|remove> <capability>`::
578 Add or remove `capability` from list of capabilities given to new users.
580 `config capabilities`::
581 List default capabilities given to new users.
585 -owner -admin -trusted
588 See also <<capabilities,Capabilities>>.
590 === General bot maintenance ===
592 Related plugins: [green]#Admin, Config#.
594 ==== Setting nickname & alternative nick ====
596 `admin nick <newnick>`::
597 Change nick to `newnick`.
602 `config nick.alternates`::
603 Space-separated list of alternate nicks, %s refers to nick.
605 NOTE: It is not possible to have a different nick in different networks.
607 ==== Setting ident ====
609 `config ident <newident>`::
610 Sets the bot's ident (`nick!ident@host`).
612 ==== Setting ircname ====
614 `config user [ircname]`::
615 Sets the bot's ircname/realname to `ircname`. If left empty, defaults to 'Supybot 0.83.3' for example.
617 ==== Setting command prefix / controlling when the bot replies ====
619 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.
621 `config reply.whenAddressedBy.chars`::
622 List of characters the bot will recognize as addressing, besides the nick of the bot.
624 `config channel [channel] reply.whenAddressedBy.chars`::
625 Ditto, but for a specific channel.
627 `config reply.whenNotAddressed`::
628 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.
630 `config reply.whenNotCommand`::
631 Whether to reply when addressed with an invalid command.
633 See also: <<config_reply,Configuration: reply>>.
635 ==== Keeping the primary nick ====
637 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.
640 Loads the plugin which works without further configuration.
642 `config plugins.NickCapture.ison`::
643 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.
645 `config plugins.NickCapture.ison.period`::
646 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.
648 === Owner commands ===
650 `owner announce <text>` - send `text` to all channels the bot is on.
652 `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.
656 [[searching-history]]
657 === Searching the history ===
659 `url last [channel] [\--{from,with,without,near,proto} value] [\--nolimit]`::
660 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.
662 NOTE: This command lists only the URLs, not nick or what message the URLs were part of. No date is shown either.
664 `last [\--from,in,on,with,without,regexp} value] [\--nolimit]`::
665 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`.
667 === Useful plugins ===
672 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).
674 `do <channel> <action>`::
675 Sends `action` to `channel`. This is the same as a normal IRC client `/me does something` command.
677 `say <channel> <text>`::
678 Say `text` on `channel`.
682 Key,Default,Description
684 #requirePresenceInChannel,True,Whether the user must be in the channel the message is targeted to.
685 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!
686 requireCapability,,"If set, capability to check for."
687 requireRegistration,True,Whether registration is required to use this plugin.
693 [green]#Dict# provides dictionary functionality using dict.org. You can also use a local dictd server.
695 `dict [dictionary] <word>`::
696 Show dictionary entry for `word`, from `dictionary` if provided. If `plugins.Dict.default` is set, use the specified dictionary instead of all.
699 List dictionaries available on the used server.
702 Show a random dictionary from available dictionaries.
704 `config plugins.Dict.server [server]`::
705 The dictd server to be used, default is dict.org.
707 `config plugins.Dict.default [dictionary]`::
708 Channel-specific default dictionary for `dict` command. `*` means to use all dictionaries. `wn` is a good default if english words are mostly looked up.
713 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.
716 List nicks that have notes queued, or the notes queued for `nick` if given.
718 `later tell <nick> <text>`::
719 Queues `text` to be sent to first matching `nick` when seen. Nick can contain wildcards, eg. `foo*`.
721 `config plugins.Later.maximum`::
722 How many messages can be queued per nick at maximum, default is 0 = no limit.
724 `config plugins.Later.private`::
725 Whether to send notes in private or on the channel where the recipient is seen.
730 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.
732 `seen any [channel] [\--user <user>] [nick]`::
733 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.
735 `seen last [channel]`::
736 Last line said on the channel.
738 `seen [channel] <nick>`::
739 Last time a `nick` was seen on a channel and what it said.
741 `seen user [channel] <user>`:
742 Ditto, except use a user name, disregarding what nick the said user had.
747 The [green]#Web# plugin contains some useful WWW-related functionality, such as fetching titles for URLs users paste on the channel.
750 Show the doctype line of `url`, if any.
753 Show the contents of `url`. Amount of data shown is determined by the configuration variable `plugins.Web.fetch.maximum`.
756 Show web server headers for the `url`.
758 `netcraft <hostname|ip>`::
759 Ask netcraft what OS and web server it thinks the server is running.
762 Show size of `url`, based on the `Content-Length` header sent by the web server.
765 Show title for `url`. This can be done automatically for all URLs pasted on a channel; see the configuration variable `plugins.Web.titleSnarfer`.
768 Return `text` quoted into a URL. Eg. `urlquote foo bar` -> `foo%20bar`.
770 `urlunquote <text>`::
771 Likewise, but reverse.
776 Key,Default,Description
778 #nonSnarfingRegexp,,"if set, URLs matching the pattern are not snarfed."
779 #titleSnarfer,false,Whether to fetch and show the title for pasted URLs.
780 fetch.maximum,0,"Maximum bytes to fetch with the `fetch` command. If zero, `fetch` is disabled."
783 === Entertainment ===
785 [[plugin_channelstats]]
786 ==== ChannelStats ====
788 [green]#ChannelStats# provides channel/registered user statistics (statistics as in 'large numbers').
790 `channelstats [channel]`:
791 Show statistics for `channel`: messages, characters, words, smileys, frowns, actions, joins, parts, quits, kicks, mode changes, and topic changes.
793 `stats [channel] [user]`:
794 Show statistics for `user` on `channel`: messages, characters, words, smileys, frowns, actions, joins, parts, quits, kicks given/received, topic changes, and mode changes.
796 WARNING: This plugin may turn otherwise normal users into spammers. But it can also provide an incentive to register on the bot. :-)
798 .plugins.ChannelStats
801 Key,Default,Description
803 #frowns,`:| :-/ :-\ :\ :/ :( :-( :'(`,Space-separated list of frowns.
804 #selfStats,`True`,Whether to include the bot in the statistics.
805 #smileys,`:) ;) ;] :-) :-D :D :P :p (= =)`,Space-separated list of smileys.
814 `dice <dices>d<sides>`::
815 Roll `dices` dices, each having `sides` sides. Lists result for each dice separately. The sum will be between `dices` and `dices` x `sides`.
817 `eightball [question]`::
818 Answers a question. But don't expect the bot to pass
820 `monologue [channel]`::
821 Check how long your monologue on the `channel` is, in case you are lose count. This is probably my favourite useless command.
823 `roulette ["spin"]`::
824 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.
826 [[plugin_nickometer]]
830 Give an objective evaluation on the lameness of `nick`, or your nick if not provided. This is similar to the same command in blootbot.
834 The "lame nick-o-meter" reading for "1eEteStWaReZL0rD[69X~" is 99.98%.
840 `quote add [channel] <text>`::
841 Add `text` as a quote for `channel`.
843 `quote change [channel] <id> <regexp>`::
844 Change quote `id` on `channel` using `regexp`. For example, `s/foo/bar/g` changes all instances of `foo` to `bar`.
846 `quote get [channel] <id>`::
847 Show quote # `id` for `channel`.
849 `quote random [channel]`::
850 Show random quote from `channel`.
852 `quote remove [channel] <id>`::
853 Remove quote # `id` from `channel`.
855 `quote search [channel] [\--{regexp,by} value] [glob]`::
856 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.
858 `quote stats [channel]`::
859 Show how many quotes there are.
861 [[plugin_quotegrabs]]
864 This plugin allows users to 'grab' the most recent line of another nick as a quote.
866 `quotegrabs get [channel] <id>`::
869 `quotegrabs grab [channel] <nick>`::
870 Save last line from `nick` as a quote.
872 `quotegrabs list [channel] <nick>`::
873 List quotes for `nick`, newest first. This does not display full quotes, but part of each, along with the id.
875 `quotegrabs quote [channel] <nick>`::
876 Show last quote of `nick`.
878 `quotegrabs random [channel] [nick]`::
879 Random quote from any nick, or `nick` if provided.
881 `quotegrabs search [channel] <text>`::
882 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.
887 Key,Default,Description
889 #randomGrabber,False,Whether to grab random lines as quotes.
890 #randomGrabber.averageTimeBetweenGrabs,864000,Average number of seconds to wait between random grabs. When half of this has passed a random grab may occur.
891 randomGrabber.minimumCharacters,8,Minimum characters needed to consider a line eligible for random grab.
892 randomGrabber.minimumWords,3,"Ditto, but for words."
897 This is a list of issues I have not yet figured out how to do, or there simply isn't a way.
899 - How to enforce channel modes (eg. force +ns-t for example)
900 - How to delete config items
901 - How to delete channels / networks
902 - Ban add does not seem to work on Freenode
904 - No way to delete a network
905 - Incomplete multi-network support
906 * 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
907 * No way to add network-specific hostmasks
908 * Not possible for the bot to have different nick in different networks
909 - There is no command to reboot the bot; it must be done from the shell
910 - Capabilities/anticapabilities for commands with spaces in them are not supported
914 === How to emulate blootbot CMDs using MoobotFactoids ===
916 [,yellow]#Thanks to Tobias "beardy" Rosenqvist for the tip!#
918 We try to make a command factoid, like we are used to with blootbot:
921 <user> cmdtest is <action> gives $1 "(an apple|a pear)"
928 <user> cmdtest someone
932 However, the factoid works:
936 * bot gives $1 an apple
939 The Moobotfactoids plugin in supybot doesn't handle arguments, (yet)
940 unfortunately, so you need to do it another way.
941 Use the Moobotfactoids to do the random part(s):
944 <user> fruits is <reply> "(an apple|an orange|a banana|a pear)"
948 Then use an alias to do the command, with arguments (the "action" command
949 is found in the Reply plugin), here you also see a use of a nested command:
952 <user> alias add givefruit action gives "[fruits]" to $1
954 <user> givefruit someone
955 * bot gives a pear to someone
958 === Tidier bot replies ===
960 I don't personally like the default Supybot replies: I hate the nick prefix and the way too verbose 'The operation succeeded.'.
962 Fortunately there are plenty of settings to configure how Supybot replies. These can be listed with `config reply` and `config replies`.
964 The `reply` items determine how Supybot acts, and `replies` contains some messages it uses. I prefer:
966 `config reply.withNickPrefix False`
968 `config replies.success OK`
970 `config reply.error.inPrivate True`.
972 === More on nested commands ===
974 [,yellow]#Thanks to Tobias "beardy" Rosenqvist for the tip!#
976 For those familliar with unix shells, (bash in particular), nested commands can be compared to doing command substitution, as in `$(command)`.
978 Nested commands are by default enclosed by square brackets (`[]`). The `commands.nested.brackets` configuration variable can be used to set these to `<>`, `{}`, or `()`.
981 <user> echo The title of the Supybot website is: [web title http://www.supybot.com/]
982 <bot> The title of the Supybot website is: Welcome to Supybot.com! Supybot Website
985 Another way nested commands can work, is like a pipe, if the configuration variable `commands.nested.pipeSyntax` is set to `True`.
987 Same example as above, but using the pipeSyntax:
990 <user> web title http://www.supybot.com/ | echo The title of the Supybot website is:
991 <bot> The title of the Supybot website is: Welcome to Supybot.com! Supybot Website
996 === Configuration ===
1001 *#inPrivate*:: Whether to reply in private to commands given on channel.
1003 *#requireChannelCommandsToBeSentInChannel*:: -
1005 *#showSimpleSyntax*:: Whether to be extra helpful when a user fails syntax of a command.
1007 *#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.
1009 *#whenNotCommand*:: Whether to reply when addressed with an invalid command.
1011 *#withNickPrefix*:: Whether to prefix the reply with the nick of the user who gave the command.
1013 *#withNotice*:: Whether to use notices instead of regular messages.
1015 *#mores.instant*:: How many messages to send initially before prompting for `more`. Default is 1.
1017 *#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.
1019 *#mores.maximum*:: Maximum number of messages to queue, default is 50.
1021 *#error.inPrivate*:: Whether to send errors in private instead of replying on channel.
1023 *#error.noCapability*:: If True, don't tell users why they can not run a command because of missing capabilities.
1025 *#error.withNotice*:: Whether to send errors as notices instead of regular messages.
1027 *error.detailed*:: Whether to show an exception or a generic error when something breaks. Mostly useful for developers.
1029 *#format.time*:: Format string for timestamps (`%I:%M %p, %B %d, %Y`, eg. '08:41 PM, September 11, 2008').
1031 *#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.
1033 *#whenAddressedBy.nicks*:: List of extra nicks to consider as addressing the bot, despite the current nick.
1035 *#whenAddressedBy.strings*:: Like the chars key, except a space-separated list of strings to accept as command prefix. This allows multicharacter command prefixes.
1037 *#whenAddressedBy.nick.atEnd*:: Whether to consider messages that end in the bot's nick to be addressed to the bot.
1039 *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.
1041 *oneToOne*:: Whether to send replies consisting of multiple messages in a single message.
1043 *withNoticeWhenPrivate*:: Whether to use notices instead of private messages.
1045 === Directory tree ===
1047 This section contains list of the directories and files supybot uses, and what they are for.
1049 NOTE: If you modify the configuration files by hand when the bot is running, you need to run `config reload`.
1052 For backups of config files.
1055 Configuration files: {channels,ignores,userdata,users}.conf
1061 Channel-specific plugin databases.
1064 Temporary plugin data files (eg. database journals).
1069 `logs/ChannelLogger/`::
1070 ChannelLogger logs. The structure depends on the config variables.
1072 `logs/messages.log`::
1076 Local plugin directory. This is by default listed in `config directories.plugins`.
1079 The main configuration file of the bot.