3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

Revise docs/automode.md

- The default bot name has been "Automode" instead of "ModeBot" for a while now; reflect that change here
- General edits for flow

[skip ci]
This commit is contained in:
James Lu 2017-10-04 23:28:27 -07:00 committed by GitHub
parent 3022274f6b
commit d8768bcb73

View File

@ -1,32 +1,32 @@
# Automode Tutorial # Automode Tutorial
The Automode plugin was introduced in PyLink 0.9 as a simple way of managing channel access control lists with Relay. That said, it is not designed to entirely replace traditional IRC services such as ChanServ. The Automode plugin was introduced in PyLink 0.9 as a simple mechanism to manage channel access. That said, it is not designed to entirely replace traditional IRC services such as ChanServ.
## Starting steps ## Starting steps
Upon loading the `automode` plugin, you should see an Automode service bot connect, using the name that you defined. This bot provides the commands used to manage access. Upon loading the `automode` plugin, you should see an Automode service bot connect, using the name that you defined (this guide uses the default, `Automode`). This service provides the commands used to manage access.
For a list of commands: For a list of commands:
- `/msg ModeBot help` - `/msg Automode help`
Adding access lists to a channel: Adding access to a channel:
- `/msg ModeBot setacc #channel [MASK] [MODE LIST]` - `/msg Automode setacc #channel [MASK] [MODE LIST]`
- The mask can be a simple `nick!user@host` hostmask or any of the extended targets (exttargets) mentioned below. MODE LIST is a string of any prefix modes that you want to set (no `+` before needed), such as `qo`, `h`, or `ov`. - The mask can be a simple `nick!user@host` hostmask or any of the extended targets (exttargets) mentioned below. MODE LIST is a string of any prefix modes that you want to set (no leading `+` needed): e.g. `qo`, `h`, or `ov`.
Removing access from a channel: Removing access from a channel:
- `/msg ModeBot delacc #channel [MASK]` - `/msg Automode delacc #channel [MASK]`
Listing access entries on a channel: Listing access entries on a channel:
- `/msg ModeBot listacc #channel` - `/msg Automode listacc #channel`
Applying all access entries on a channel (sync): Applying all access entries on a channel (sync):
- `/msg ModeBot syncacc #channel` - `/msg Automode syncacc #channel`
Clearing all access entries on a channel: Clearing all access entries on a channel:
- `/msg ModeBot clearacc #channel` - `/msg Automode clearacc #channel`
## Supported masks and extended targets ## Supported masks and extended targets
Automode supports any hostmask or extended target implemented in PyLink; see the [Exttargets Guide](exttargets.md) for more details. Automode supports any hostmask or PyLink extended target; see the [Exttargets Guide](exttargets.md) for more details.
## Permissions ## Permissions