Using Email Address as the Username
Note!
Configuring the email address as the username in an already running Identity Server is not the production recommended way. Therefore, make sure to configure it before you begin working with WSO2 IS.
- Open the <
PRODUCT_HOME>/repository/conf/carbon.xml
file. Look for the commented out configuration
EnableEmailUserName
. Uncomment the configuration to enable email authentication.<EnableEmailUserName>true</EnableEmailUserName>
Open the <
IS_HOME>/repository/conf/claim-config.xml
file and configure theAttributeID
property of thehttp://wso2.org/claims/username
claim ID that is under<Dialect dialectURI="http://wso2.org/claims">
tomail
.<Claim> <ClaimURI>http://wso2.org/claims/username</ClaimURI> <DisplayName>Username</DisplayName> <AttributeID>mail</AttributeID> <Description>Username</Description> </Claim>
This file is checked only when WSO2 IS is starting for the first time. Therefore, if you haven't configured this property at the time of starting up the server for the first time, you will get errors at the start up.
Open the
<IS_HOME>/repository/conf/
identity/
file and set the following property toidentity-mgt.properties
true
.This step is required due to a known issue that prevents the confirmation codes from being removed after they are used when email usernames are enabled. This occurs because the '@' character (and some special characters) are not allowed in the registry. To overcome this issue, enable hashed usernames when saving the confirmation codes by configuring the properties below.
UserInfoRecovery.UseHashedUserNames=true
Optionally, you can also configure the following property to determine which hash algorithm to use.
UserInfoRecovery.UsernameHashAlg=SHA-1
Configure the following set of parameters in the user store configuration, depending on the type of user store you are connected to (LDAP/Active Directory/ JDBC).
Parameter Description UserNameAttribute
Set the mail attribute of the user. LDAP/Active Directory only
<Property name="UserNameAttribute">mail</Property>
UserNameSearchFilter
Use the mail attribute of the user instead of
cn
oruid
. LDAP/Active Directory only<Property name="UserNameSearchFilter">(&(objectClass=identityPerson)(mail=?))</Property>
UserNameListFilter
Use the mail attribute of the user. LDAP/Active Directory only
<Property name="UserNameListFilter">(&(objectClass=identityPerson)(mail=*))</Property>
UserDNPattern
This parameter is used to speed up the LDAP search operations. You can comment out this config. LDAP/Active Directory only
<!--Property name="UserDNPattern">cn={0},ou=Users,dc=wso2,dc=com</Property-->
UsernameJavaScriptRegEx
Change this property that is under the relevant user store manager tag as follows. This property allows you to add special characters like "@" in the username.
<Property name="UsernameJavaScriptRegEx">^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$</Property>
UsernameJavaRegEx
This is a regular expression to validate usernames. By default, strings have a length of 5 to 30. Only non-empty characters are allowed. You can provide ranges of alphabets, numbers and also ranges of ASCII values in the RegEx properties.
<Property name="UsernameJavaRegEx">^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$</Property>
Realm configurations The
AdminUser
username must use the email attribute of the admin user.<AdminUser> <UserName>admin@wso2.com</UserName> <Password>admin</Password> </AdminUser>
Before this configuration, the user having the username admin and password admin was considered the super administrator. The super administrator user cannot be deleted.
After this configuration, the user having the username
admin@wso2.com
is considered the super administrator. The user having the username admin is considered as a normal administrator.If you changed the password of the admin user to something other than 'admin', start the WSO2 IS server using the -Dsetup parameter as shown in the command below.
sh wso2server.sh -Dsetup
With these configuration users can log in to super tenant with both email user name (alex@gmal.com) or non-email user names (larry). But for tenant only email user names allowed (tod@gmail.com@wso2.com)
You can configure email user name without enabling
EnableEmailUserName
property, then users can login to both super tenant and tenant using email and non-email user names. But super tenant users should always use @carbon.super at the end of user names.Restart the server.
For more information on how to configure primary and secondary user stores, see Configuring User Stores.