From 3510351f4df3923d5c1874739cb1e00af5ea0ba6 Mon Sep 17 00:00:00 2001 From: Timshel Date: Tue, 26 Aug 2025 21:08:43 +0200 Subject: [PATCH] Show SSO_ALLOW_UNKNOWN_EMAIL_VERIFICATION in admin (#6235) --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 840bf474..75caadbd 100644 --- a/src/config.rs +++ b/src/config.rs @@ -697,7 +697,7 @@ make_config! { /// Allow email association |> Associate existing non-SSO user based on email sso_signups_match_email: bool, true, def, true; /// Allow unknown email verification status |> Allowing this with `SSO_SIGNUPS_MATCH_EMAIL=true` open potential account takeover. - sso_allow_unknown_email_verification: bool, false, def, false; + sso_allow_unknown_email_verification: bool, true, def, false; /// Client ID sso_client_id: String, true, def, String::new(); /// Client Key