From 44c579c4f9ab703dc545f428bd162addb0440c8f Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 22 May 2014 12:55:43 +0300 Subject: [PATCH] src/conf.py: fix #653 ``` 4.4.2 Notice Command: NOTICE Parameters: The NOTICE message is used similarly to PRIVMSG. The difference between NOTICE and PRIVMSG is that automatic replies must never be sent in response to a NOTICE message. This rule applies to servers too - they must not send any error reply back to the client on receipt of a notice. The object of this rule is to avoid loops between a client automatically sending something in response to something it received. This is typically used by automatons (clients with either an AI or other interactive program controlling their actions) which are always seen to be replying lest they end up in a loop with another automaton. See PRIVMSG for more details on replies and examples. ``` --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index a53b1125c..e1368053c 100644 --- a/src/conf.py +++ b/src/conf.py @@ -463,7 +463,7 @@ registerChannelValue(supybot.reply, 'withNotice', # XXX: User value. registerGlobalValue(supybot.reply, 'withNoticeWhenPrivate', - registry.Boolean(False, _("""Determines whether the bot will reply with a + registry.Boolean(True, _("""Determines whether the bot will reply with a notice when it is sending a private message, in order not to open a /query window in clients. This can be overridden by individual users via the user configuration variable reply.withNoticeWhenPrivate.""")))