aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/create-account/main.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/create-account/main.go b/cmd/create-account/main.go
index fbd14b8d..bd053f2f 100644
--- a/cmd/create-account/main.go
+++ b/cmd/create-account/main.go
@@ -85,6 +85,10 @@ func main() {
logrus.Fatalf("The reset-password flag has been replaced by the POST /_dendrite/admin/resetPassword/{localpart} admin API.")
}
+ if cfg.ClientAPI.RegistrationSharedSecret == "" {
+ logrus.Fatalln("Shared secret registration is not enabled, enable it by setting a shared secret in the config: 'client_api.registration_shared_secret'")
+ }
+
if *username == "" {
flag.Usage()
os.Exit(1)