pbot/doc/Admin.md

19 KiB
Raw Blame History

Administrative

Logging in and out

You cannot use any of the admin commands unless you login. Note that the login command requires that your currently connected IRC hostmask matches the hostmask configured for the user account.

You can keep your user account permanently logged in by setting a couple of user metadata values. See the user metadata list for more information.

login

Logs into PBot.

Usage: login [channel] <password>

logout

Logs out of PBot.

Usage: logout

User management commands

useradd

Adds a new user to PBot.

Usage: useradd <account name> <channel> <hostmask> [capabilities [password]]

Parameter Description
<account name> A unique name to identify this account (usually the nick of the user, but it can be any identifier).
<channel> The channel this user belongs to; use global for all channels. This field cannot be changed without removing and re-adding the user.
<hostmask> The hostmask from which this user is recognized/allowed to login from (e.g., somenick!*@*.somedomain.com or *!*@unaffiliated/someuser). This field cannot be changed without removing and re-adding the user.
[capabilities] A comma-separated list of user-capabilities for this user.
[password] The password the user will use to login (from /msg, obviously). Generates a random password if omitted. Users may view and set their password by using the my command.

userdel

Removes a user from PBot. You can use the account name field or the hostmask field that was set via the useradd command.

Usage: userdel <channel> <account name or hostmask>

userset

Sets metadata or user-capabilities for a user account. You can use the account name field or the hostmask field that was set via the useradd command. See also: user metadata list.

If key is omitted, it will list all the keys and values that are set. If value is omitted, it will show the value for key.

Usage: userset [channel] <account name or hostmask> [<key> [value]]

userunset

Deletes a metadata or user-capability from a user account. You can use the account name field or the hostmask field that was set via the useradd command.

Usage: userunset [channel] <account name or hostmask> <key>

User metadata list

This is a list of recognized metadata keys for user accounts.

Name Description
name A unique name identifying the user account.
password The password for the user account.
loggedin Whether the user is logged in or not.
stayloggedin Do not log the user out when they part/quit.
autologin Automatically log the user in when they join the channel. Note: make sure the user accounts hostmask wildcards are as restrictive as possible.
autoop Give the user operator status when they join the channel. Note: make sure the user accounts hostmask wildcards are as restrictive as possible.
autovoice Give the user voiced status when they join the channel. Note: make sure the user accounts hostmask wildcards are as restrictive as possible.
location Sets your location for using the weather command without any arguments.
timezone Sets your timezone for using the date command without any arguments.
capabilities User capabilities are managed as user metadata.

Listing users

To list user accounts, use the list users command. This is not an admin command, but it is included here for completeness. Users with a plus (+) sign next their name have user-capabilities set on their account.

Usage: list users [channel]

When the optional [channel] argument is provided, only users for that channel will be listed; no global users will be listed.

When [channel] is omitted and the command is used in a channel, it will list the users for that channel, plus all global users.

When [channel] is omitted and the command is used from private message, it will list all users from all channels, including global users.

User capabilities

PBot uses a user-capability system to control what users can and cannot do.

cap

Use the cap command to list capabilities, to manage capability groups and to see what capabilities a user has.

Usage:

cap list [capability] |
cap group <existing or new capability group> <existing capability> |
cap ungroup <existing capability group> <grouped capability> |
cap userhas <user> [capability]

Listing capabilities

Use cap list [capability] to list user-capabilities.

If [capability] is omitted, the command will list all available capabilities.

<pragma-> cap list
   <PBot> Capabilities: admin (7 caps), botowner (60 caps), can-ban (1 cap), can-deop (1 cap),
          can-devoice (1 cap), can-mode-any (53 caps), can-op (1 cap), can-unban (1 cap),
          chanop (10 caps), can-akalink, can-akaunlink, can-antispam, can-blacklist, ...
<pragma-> cap list chanop
   <PBot> Grouped capabilities for chanop: can-ban (1 cap), can-deop (1 cap), can-devoice (1 cap),
          can-mute (1 cap), can-op (1 cap), can-unban (1 cap), can-unmute (1 cap), can-voice (1 cap),
          can-invite, can-kick
<pragma-> cap list can-ban
   <PBot> Grouped capabilities for can-ban: can-mode-b

Grouping capabilities

Capabilities can be grouped together into a collection, which can then be applied to a user. Capability groups can containing nested groups.

In the listing capabilities example, the admin capability is a group containing seven capabilities, including the chanop capability group which itself contains 10 capabilities.

<pragma-> cap list admin
   <PBot> chanop (10 caps), can-join, can-part, can-useradd, can-userdel,
          can-userset, can-userunset
Creating a new group or adding to an existing group

To create a new capability group or to add capabilities to an existing group, use the cap group command.

Usage: cap group <existing or new capability group> <existing capability>

For example, to create a new capability group called moderator who can strictly only set mode +m or mode -m and use the voice and devoice commands:

<pragma-> cap group moderator can-voice
<pragma-> cap group moderator can-devoice
<pragma-> cap group moderator can-mode
<pragma-> cap group moderator can-mode-m
<pragma-> cap list moderator
   <PBot> Grouped capabilities for moderator: can-devoice (1 cap), can-voice (1 cap),
          can-mode, can-mode-m

Then you can set this capability group on users with the userset command.

Removing capabilites from a group or deleting a group

To remove capabilities from a group or to delete a group, use the cap ungroup command.

Usage: cap ungroup <existing capability group> <grouped capability>

When the last capability is removed from a group, the group itself will be deleted.

Giving capabilities to users

To give capabilities to a user, use the useradd or the userset commands.

<pragma-> useradd alice global alice!*@* moderator

or userset alice moderator 1

Checking user capabilities

To see what capabilities a user account has, use the cap userhas command.

Usage: cap userhas <user> [capability]

If the [capability] argument is omitted, the command will list all capability groups and capabilities the user account has.

If the [capability] argument is provided, the command will determine if the capability is granted to the user account.

<pragma-> cap userhas alice
   <PBot> User aliace has capabilities: moderator (4 caps)
<pragma-> cap userhas alice can-voice
   <PBot> Yes. User alice has capability can-voice.
<pragma-> cap userhas alice can-op
   <PBot> No. User alice does not have capability can-op.

User capabilities list

This is a list of built-in capability groups and capabilities. You can create new custom capability groups with the cap group command.

Please note that PBot is sometimes updated more frequently than this list is updated. To see the most current list of capabilities, use the cap list command.

Name Description
botowner The most powerful capability group. Contains all capabilities.
admin The admin capability group. Contains the basic administrative capabilities.
chanop Channel operator capability group. Contains the basic channel management capabilities.
chanmod Channel moderator capability group. Grants can-voice, can-devoice and the use of the mod command without being voiced.
can-<command name> If a command <command name> has the cap-required command metadata then the users account must have the can-<command name> capability to invoke it. For example, the op command requires users to have the can-op capability.
can-mode-<letter> Allows the mode command to set mode <letter>. For example, to allow a user to set mode +m give them the can-mode and can-mode-m capabilities.
can-modify-capabilities Allows the user to use the useradd or userset commands to add or remove capabilities from users.
can-group-capabilities Allows the user to use the cap group command to modify capability groups.
can-ungroup-capabilities Allows the user to use the cap ungroup command to modify capability groups.

Channel management commands

join

To temporarily join a channel, use the join command. The channels may be a comma- separated list.

Usage: join <channel(s)>

part

To temporarily leave a channel (that is, without removing it from PBots list of channels), use the part command. The channels may be a comma-separated list.

Usage part <channel(s)>

chanadd

chanadd permanently adds a channel to PBots list of channels to auto-join and manage.

Usage: chanadd <channel>

chanrem

chanrem removes a channel from PBots list of channels to auto-join and manage.

Usage: chanrem <channel>

chanset

chanset sets a channels metadata. See channel metadata list

Usage: chanset <channel> [key [value]]

If both key and value are omitted, chanset will show all the keys and values for that channel. If only value is omitted, chanset will show the value for that key.

chanunset

chanunset deletes a channels metadata key.

Usage: chanunset <channel> <key>

chanlist

chanlist lists all added channels and their metadata keys and values.

Channel metadata list

Name Description
enabled When set to a true value, PBot will auto-join this channel after identifying to NickServ (unless general.autojoin_wait_for_nickserv is 0, in which case auto-join happens immediately).
chanop When set to a true value, PBot will perform channel management (anti-flooding, ban-evasion, etc).
permop When set to a true value, PBot will automatically op itself when joining and remain opped instead of automatically opping and deopping as necessary.

ignore

Ignore a user. If you omit [channel] PBot will ignore the user in all channels, including private messages.

Usage: ignore <hostmask regex> [channel [timeout]]

Timeout can be specified as an relative time in English; for instance, 5 minutes, 1 month and 2 weeks, next thursday, friday after next, forever and such.

unignore

Unignores a user. If you omit [channel] PBot will unignore the user from all channels, including private messages.

Usage: unignore <hostmask regex> [channel]

whitelist

Whitelists a hostmask regex to be exempt from ban evasions or anti-flood enforcement.

Usages:

  • whitelist <show/list>
  • whitelist add <channel> <hostmask>
  • whitelist remove <channel> <hostmask>

blacklist

Blacklists a hostmask regex from joining a channel.

Usages:

  • blacklist <show/list>
  • blacklist add <hostmask regex> [channel]
  • blacklist remove <hostmask regex> [channel]

op

deop

voice

devoice

The op, deop, voice and devoice commands all perform their respective named action.

The targets parameter can be a list of multiple nicks, optionally containing wildcards. If targets is omitted, the action will be performed on the caller.

Usages:

In channel:

  • op [targets]
  • deop [targets]
  • voice [targets]
  • devoice [targets]

From private message:

  • op <channel> [targets]
  • deop <channel> [targets]
  • voice <channel> [targets]
  • devoice <channel> [targets]

mode

Sets or unsets channel or user modes.

Usage: mode [channel] <flags> [targets]

PBot extends the IRC MODE command in useful ways. For instance, the targets parameter may contain wildcards. To op everybody whose nick ends with |dev you can do !mode +o *|dev in a channel.

ban/mute

Bans or mutes a user. If the argument is a nick instead of a hostmask, it will determine an appropriate banmask for that nick. The argument can be a comma-separated list of multiple nicks or masks.

Usages: - ban <nick or hostmask> [channel [timeout]] - mute <nick or hostmask> [channel [timeout]]

If timeout is omitted, PBot will ban the user for 24 hours. Timeout can be specified as an relative time in English; for instance, 5 minutes, 1 month and 2 weeks, next thursday, friday after next, forever and such.

unban/unmute

Unbans or unmutes a user. If the argument is a nick instead of a hostmask, it will find all bans that match any of that nicks hostmasks or NickServ accounts and unban them. The argument can be a comma-separated list of multiple nicks or masks.

Usages: - unban <nick or hostmask> [channel] - unmute <nick or hostmask> [channel]

invite

Invites a user to a channel.

Usage: invite [channel] <nick>

kick

Removes a user from the channel. <nick> can be a comma-separated list of multiple users, optionally containing wildcards. If [reason] is omitted, a random insult will be used.

Usage from channel: kick <nick> [reason] From private message: kick <channel> <nick> [reason]

Module management commands

Note that modules are “reloaded” each time they are executed. There is no need to refresh after editing a module.

load

This command loads a module in $data_dir/modules/ as a PBot command. It is equivalent to factadding a new keyword and then setting its type to module.

Usage: load <keyword> <module>

For example, to load $data_dir/modules/qalc.sh as the qalc command:

<pragma-> !load qalc qalc.sh

unload

This command unloads a module. It is equivalent to deleting the factoid keyword the module was loaded as.

Usage: unload <keyword>

Listing modules

To list the loaded modules, use the list modules command. This is not an admin command, but it is included here for completeness.

Usage: list modules

Plugin management commands

plug

Loads a plugin into PBot.

Usage: plug <plugin>

unplug

Unloads a plugin from PBot.

Usage: unplug <plugin>

replug

Reloads a plugin into PBot. The plugin is first unloaded and then it is loaded again.

Usage: replug <plugin>

pluglist

Lists all currently loaded plugins. This isnt an admin command, but it is included here for completeness.

Usage: pluglist

<pragma-> !pluglist
   <PBot> Loaded plugins: ActionTrigger, AntiAway, AntiKickAutoRejoin, AntiNickSpam, AntiRepeat, AntiTwitter, AutoRejoin, GoogleSearch, Quotegrabs, RemindMe, UrlTitles

Command metadata commands

cmdset

Use cmdset to set various metadata for built-in commands.

Usage: cmdset <command> [key [value]]

Omit <key> and <value> to list all the keys and values for a command. Specify <key>, but omit <value> to see the value for a specific key.

cmdunset

Use cmdset to delete various metadata from built-in commands.

Usage: cmdunset <command> <key>

Command metadata list

Name Description
help The text to display for the help command.
cap-required If this is set to a true value then the command requires that users have the can-<command name> capability before they can invoke it.

Miscellaneous commands

These are some of the miscellaneous admin commands that have not been covered above or in the rest of the PBot documentation.

export

Exports specified list to HTML file in $data_dir.

Usage: export <factoids|quotegrabs>

refresh

Refreshes/reloads PBot core modules and plugins (not the command-line modules since those are executed/loaded each time they are invoked).

reload

Reloads a data or configuration file from $data_dir. This is useful if you manually edit a data or configuration file and you want PBot to know about the modifications.

Usage reload <admins|bantimeouts|blacklist|channels|factoids|funcs|ignores|mutetimeouts|registry|whitelist>

sl

Sends a raw IRC command to the server. Use the sl command when PBot does not have a built-in command to do what you need.

Usage: sl <irc command>

<pragma-> sl PRIVMSG #channel :Test message
   <PBot> Test message

die

Tells PBot to disconnect and exit.