From c2ff6a8643587aaebc3feeff2c15331c3aa57ec0 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 11 Jun 2021 21:10:17 +0300 Subject: [PATCH] irc/limnoria: add mute-on-chan.md --- irc/limnoria/mute-on-chan.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 irc/limnoria/mute-on-chan.md diff --git a/irc/limnoria/mute-on-chan.md b/irc/limnoria/mute-on-chan.md new file mode 100644 index 0000000..66fc813 --- /dev/null +++ b/irc/limnoria/mute-on-chan.md @@ -0,0 +1,25 @@ +# Muting on channel + +There is `channel lobotomy add []`, but it may have unexpected +consequences such as disabling titlefetching or not replying to actions from +private or disabling feeds, so to have the bot not reply to anyone I prefer +disabling all responses: + +``` +config channel #CHAN supybot.reply.whenAddressedBy.chars "" +config channel #CHAN supybot.reply.whenAddressedBy.nick False +config channel #CHAN supybot.reply.whenAddressedBy.nick.atEnd False +config channel #CHAN supybot.reply.whenAddressedBy.nicks "" +config channel #CHAN supybot.reply.whenAddressedBy.strings "" +config channel #CHAN supybot.reply.whenNotAddressed False +``` + +* disables prefix char (note how "" means empty by default + (`supybot.commands.quotes`), not to be confused with """) +* disables nick as prefix +* disables nick as suffix (disabled by default) +* disables replying with other nicks as prefix (disabled by default) +* disables replying with strings as prefix (disabled by default, I think, + might be an option in `supybot-wizard`) +* disables replying to all messages on channel (disabled by default and I + have no idea why one would enable that globally anyway)