From f24a17e5c4429ccf039c26eaf92d6386e6aebc73 Mon Sep 17 00:00:00 2001 From: opal hart Date: Sat, 8 Feb 2020 09:44:40 +0000 Subject: [PATCH] Config docs: remove reference to grouped nicks Some networks (e.g. freenode) now allow usage of grouped nicks for SASL username --- locales/messages.pot | 3 +-- src/conf.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/locales/messages.pot b/locales/messages.pot index b558815fa..c581f016a 100644 --- a/locales/messages.pot +++ b/locales/messages.pot @@ -356,8 +356,7 @@ msgstr "" #: src/conf.py:415 msgid "" "Determines what SASL username will be used on %s. This should\n" -" be the bot's account name. Due to the way SASL works, you can't use\n" -" any grouped nick." +" be the bot's account name." msgstr "" #: src/conf.py:419 diff --git a/src/conf.py b/src/conf.py index d716bacc0..758e406ea 100644 --- a/src/conf.py +++ b/src/conf.py @@ -409,8 +409,7 @@ def registerNetwork(name, password='', ssl=True, sasl_username='', sasl = registerGroup(network, 'sasl') registerGlobalValue(sasl, 'username', registry.String(sasl_username, _("""Determines what SASL username will be used on %s. This should - be the bot's account name. Due to the way SASL works, you can't use - any grouped nick.""") % name, private=False)) + be the bot's account name.""") % name, private=False)) registerGlobalValue(sasl, 'password', registry.String(sasl_password, _("""Determines what SASL password will be used on %s.""") \ % name, private=True))