diff --git a/en/identity-server/next/docs/guides/account-configurations/account-recovery/username-recovery.md b/en/identity-server/next/docs/guides/account-configurations/account-recovery/username-recovery.md index c4f5ecc885..ee229a3650 100644 --- a/en/identity-server/next/docs/guides/account-configurations/account-recovery/username-recovery.md +++ b/en/identity-server/next/docs/guides/account-configurations/account-recovery/username-recovery.md @@ -12,3 +12,14 @@ To enable username recovery, take the following steps: ![Username Recovery Configuration]({{base_path}}/assets/img/guides/account-configurations/username-recovery.png){: width="900" style="display: block; margin: 0;"} +!!! note + Once users enter their details on the username recovery page, such as their first name, email, or mobile number, if the system can verify a unique user based on the provided information, an email will be sent to their registered email address. If the system is unable to identify a unique user, no recovery information will be sent by default. + + If you want to enable username recovery for non-unique users, you can configure it by adding the following configuration to the `deployment.toml` file located in the `/repository/conf` directory. + + ``` toml + [identity_mgt.username_recovery.non_unique_user] + enabled = true + ``` + + When this configuration is enabled, the system will send **multiple recovery notifications** with all usernames associated with the identified users. \ No newline at end of file