From 3233af63746860c124c11ad6c6f6277d69170e4e Mon Sep 17 00:00:00 2001 From: Robin Malley Date: Thu, 13 Aug 2020 19:29:18 +0000 Subject: [PATCH] Enforce lowercase usernames Previously, there was text on the claim page claiming usernames needed to be all lower case, but it wasn't enforced, leading some people to create usernames that cannot function as subdomains. --- conf/smr.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/smr.conf b/conf/smr.conf index 7693d17..9c960a8 100644 --- a/conf/smr.conf +++ b/conf/smr.conf @@ -77,7 +77,7 @@ domain * { validate pass v_any } params post /_claim { - validate user v_any + validate user v_subdomain } }