mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Mikaela Suomalainen
d2dd69b6df
Anonymous tell uses normal privmsg which doesn't check that services are U-lined and not random user pretending to be them. The correct way to identify to NickServ after already being connected is `ircquote nickserv identify username password`.
28 lines
927 B
Markdown
28 lines
927 B
Markdown
Anonymous allows you to send messages anonymously as the bot. If
|
|
`supybot.plugins.Anonymous.allowPrivateTarget` is `True`, you can send
|
|
messages in query too.
|
|
|
|
## Usage examples
|
|
|
|
### Proving that you are the owner.
|
|
|
|
When you ask for cloak/vhost for your bot, the network operators will
|
|
often ask you to prove that you own the bot. You can do this for example
|
|
with the following method:
|
|
|
|
```
|
|
@load Anonymous
|
|
@config plugins.anonymous.requirecapability owner
|
|
@config plugins.anonymous.allowprivatetarget True
|
|
@anonymous say <operator nick> Hi, my owner is <your nick> :)
|
|
```
|
|
|
|
This
|
|
* Loads the plugin.
|
|
* Makes the plugin require that you are the owner
|
|
* If anyone could send private messages as the bot, they could also
|
|
access network services.
|
|
* Allows sending private messages
|
|
* Sends message `Hi, my owner is <your nick> :)` to `operator nick`.
|
|
* Note that you won't see the messages that are sent to the bot.
|