From 0f89e12f4d89f20430292d4086e826bc982337d4 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Wed, 28 May 2014 12:45:07 +0300 Subject: [PATCH] src/conf.py: set default banmask to host. `*!user@host` is very easy to evade as most of users don't have identd server. This makes bans a little more difficult to evade. See also: * weechat/weechat#18 * ProgVal/Limnoria#689 --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index c5a321d22..fe6669986 100644 --- a/src/conf.py +++ b/src/conf.py @@ -1054,7 +1054,7 @@ class Banmask(registry.SpaceSeparatedSetOfStrings): return ircutils.joinHostmask(bnick, buser, bhost) registerChannelValue(supybot.protocols.irc, 'banmask', - Banmask(['user', 'host'], _("""Determines what will be used as the + Banmask(['host'], _("""Determines what will be used as the default banmask style."""))) registerGlobalValue(supybot.protocols.irc, 'strictRfc',