Limnoria/plugins/LogToIrc
Valentin Lorentz 5b9ec4f716 LogToIrc: Prevent loop when sending to non-existing channels
When the target is a channel it is not in, it would treat it as a user;
which, if userCapabilityRequired is empty, would unconditionally send it
to a channel.
This would usually result in an error, that would be logged,
hence the loop.
2021-09-13 19:07:34 +02:00
..
README.rst all plugins: regenerate READMEs 2021-04-22 00:29:15 +02:00
__init__.py LogToIrc: Honor the configured log level 2021-09-13 19:05:42 +02:00
config.py all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +02:00
handler.py LogToIrc: Prevent loop when sending to non-existing channels 2021-09-13 19:07:34 +02:00
plugin.py all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +02:00
test.py all: Add generic 'The Limnoria Contributors' to copyright notices. 2021-08-01 21:54:49 +02:00

README.rst

Documentation for the LogToIrc plugin for Supybot

Purpose

Allows for sending the bot's logging output to channels or users.

Configuration

supybot.plugins.LogToIrc.channelModesRequired

This config variable defaults to "s", is network-specific, and is not channel-specific.

Determines what channel modes a channel will be required to have for the bot to log to the channel. If this string is empty, no modes will be checked.

supybot.plugins.LogToIrc.color

This config variable defaults to "False", is network-specific, and is channel-specific.

Determines whether the bot's logs to IRC will be colorized with mIRC colors.

supybot.plugins.LogToIrc.level

This config variable defaults to "WARNING", is network-specific, and is channel-specific.

Determines what the minimum priority level logged will be to IRC. See supybot.log.level for possible values. DEBUG is disabled due to the large quantity of output.

supybot.plugins.LogToIrc.networks

This config variable defaults to " ", is not network-specific, and is not channel-specific.

Determines what networks the bot should log to. If no networks are set, the bot will log on one network (whichever happens to be around at the time it feels like logging).

supybot.plugins.LogToIrc.notice

This config variable defaults to "False", is network-specific, and is channel-specific.

Determines whether the bot's logs to IRC will be sent via NOTICE instead of PRIVMSG. Channels will always be PRIVMSGed, regardless of this variable; NOTICEs will only be used if this variable is True and the target is a nick, not a channel.

supybot.plugins.LogToIrc.public

This config variable defaults to "True", is not network-specific, and is not channel-specific.

Determines whether this plugin is publicly visible.

supybot.plugins.LogToIrc.targets

This config variable defaults to " ", is network-specific, and is not channel-specific.

Determines which channels/nicks the bot should log to. If no channels/nicks are set, this plugin will effectively be turned off.

supybot.plugins.LogToIrc.userCapabilityRequired

This config variable defaults to "owner", is not network-specific, and is not channel-specific.

Determines what capability is required for the bot to log to in private messages to the user. If this is empty, there will be no capability that's checked.