From 32c329efeb946158d3c4b34d0a5f3b40e3fe3d9d Mon Sep 17 00:00:00 2001 From: David Precious Date: Fri, 7 Feb 2020 14:59:00 +0000 Subject: [PATCH] Link to SASL docs in "must use SASL" message I don't much like hardcoding our URLs in the ircd's source, it feels dirty, but it *would* make things clearer for users... Opinions welcome. --- src/s_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s_user.c b/src/s_user.c index 5ea7641bd..1d452db28 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -361,7 +361,7 @@ register_local_user(struct Client *client_p, struct Client *source_p, const char { ServerStats.is_ref++; sendto_one_notice(source_p, ":*** Notice -- You need to identify via SASL to use this server"); - exit_client(client_p, source_p, &me, "SASL access only"); + exit_client(client_p, source_p, &me, "SASL access only - see https://freenode.net/kb/answer/sasl"); return (CLIENT_EXITED); }