Limnoria/plugins/Anonymous
Aminda Suomalainen d2dd69b6df Anonymous: remove dangerous example from README
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`.
2015-01-18 21:09:26 +02:00
..
locales Alias & Anonymous: add l10n-es 2015-01-01 19:38:37 +02:00
README.md Anonymous: remove dangerous example from README 2015-01-18 21:09:26 +02:00
__init__.py Change the modeline to use softtabstop instead of tabstop. 2006-02-11 15:52:51 +00:00
config.py Anonymous: fix help for allowPrivateTarget 2014-10-09 13:32:19 -07:00
messages.pot Squashed commit of the following: 2014-12-20 14:37:27 +01:00
plugin.py Anonymous: Better error when "tell" is disabled 2014-12-03 20:55:16 +01:00
test.py Anonymous: Move "say $nick" functionality to new tell command 2014-07-09 21:03:26 -04:00

README.md

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 wont see the messages that are sent to the bot.