From f5158c61868581be19c0f66ec341101ca918daaf Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 18 Oct 2017 17:14:40 +0530 Subject: [PATCH] matrixsynapse: Disable public registration by default Signed-off-by: Sunil Mohan Adapa --- actions/matrixsynapse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/matrixsynapse b/actions/matrixsynapse index 4d50e4ed1..2b1db74fc 100755 --- a/actions/matrixsynapse +++ b/actions/matrixsynapse @@ -57,7 +57,7 @@ def subcommand_post_install(_): config = round_trip_load(config_file) config['max_upload_size'] = '100M' - config['enable_registration'] = True + for listener in config['listeners']: if listener['port'] == 8448: listener['bind_address'] = '0.0.0.0'