From 47ffaea069431837165572d3eebacc04ae46eb4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 16 Feb 2024 23:27:55 +0100 Subject: [PATCH] Remove 'none' value for 3pid on account creation as it's not accepted by synapse without workaround --- config_panel.toml | 4 ++-- scripts/install | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config_panel.toml b/config_panel.toml index b911be3..f8b4198 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -26,8 +26,8 @@ services = ["__APP__"] [main.welcome.registrations_require_3pid] ask = "Registration requires all following 3PID personal identifier" type = "select" - choices = ["none","email", "msisdn", "email&msisdn"] - help = "! Warning msisdn (Phone number) registration require a third party service which send confirmation token by SMS.\nDo not select any option including msisdn if you don't know what to do. And don't user email nor msisdn if you don't understand privacy flow\nDefaults to: 'none'." + choices = ["email", "msisdn", "email&msisdn"] + help = "! Warning msisdn (Phone number) registration require a third party service which send confirmation token by SMS.\nDo not select msisdn if you don't know what to do. And don't select user msisdn if you don't understand privacy flow\nDefaults to: 'email'." visible = "enable_registration" [main.welcome.allowed_local_3pids_email] diff --git a/scripts/install b/scripts/install index a1f4653..f03ce32 100644 --- a/scripts/install +++ b/scripts/install @@ -29,7 +29,7 @@ allow_public_rooms_without_auth="false" allow_public_rooms_over_federation="false" max_upload_size="100M" disable_msisdn_registration="true" -registrations_require_3pid="none" +registrations_require_3pid=email allowed_local_3pids_email="" allowed_local_3pids_msisdn="" allow_guest_access="false"