diff options
author | Erik Johnston <erik@matrix.org> | 2015-05-28 11:01:34 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-05-28 11:01:34 +0100 |
commit | 36b3b75b21ce9702434830795400ef58873a0492 (patch) | |
tree | 973f1e76f0eac4291d56b2549d55d9d75073e179 /synapse/config | |
parent | Merge branch 'release-v0.9.1' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-36b3b75b21ce9702434830795400ef58873a0492.tar.xz |
Registration should be disabled by default
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/registration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/registration.py b/synapse/config/registration.py index b39989a87f..67e780864e 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py @@ -39,7 +39,7 @@ class RegistrationConfig(Config): ## Registration ## # Enable registration for new users. - enable_registration: True + enable_registration: False # If set, allows registration by anyone who also has the shared # secret, even if registration is otherwise disabled. |