From e385cd18f6ded2d0c0749664273d1cd9dbb29526 Mon Sep 17 00:00:00 2001 From: Till Faelligen Date: Thu, 28 Apr 2022 17:43:01 +0200 Subject: [PATCH] Update error message --- setup/config/config_clientapi.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/config/config_clientapi.go b/setup/config/config_clientapi.go index fd126fa42..3a198e7f5 100644 --- a/setup/config/config_clientapi.go +++ b/setup/config/config_clientapi.go @@ -89,8 +89,8 @@ func (c *ClientAPI) Verify(configErrs *ConfigErrors, isMonolith bool) { if !c.RecaptchaEnabled && c.RegistrationSharedSecret == "" { configErrs.Add("You have enabled open registration without any verification. This is a known vector for " + "spam and abuse. If you would like to allow public registration, please consider adding captcha" + - " or token-based verification. Otherwise this check can be removed by setting the " + - "`enable_registration_without_verification` config option to `true`.") + " or token-based verification. Otherwise this check can be removed by adding the " + + "`--really-enable-open-registration` parameter.") } } }