...
Enable the Identity Listener by setting the following property to
true
in the<IS_HOME>/repository/conf/identity/identity.xml
file.
orderIdCode Block language xml <EventListener type="org.wso2.carbon.user.core.listener.UserOperationEventListener" name="org.wso2.carbon.identity.mgt.IdentityMgtEventListener"
orderId="50" enable="true"/>
Configure the
<IS_HOME>/repository/conf/identity/identity-mgt.properties
file with the following.Code Block language xml Notification.Sending.Internally.Managed=true
See the following table for descriptions of these configurations.
ConfigurationDescriptionNotification.Sending.Internally.Managed=true
This enables the internal email sending module. If
false
, the email sending data is available to the application via a Web service. Thus, the application can send the email using its own email sender.Configure the
<IS_HOME>/repository/conf/email/email-admin-config.xml
file with the email template with the type “accountIdRecovery
”. The following is a sample template.Code Block language html/xml <configuration type="accountIdRecovery"> <targetEpr></targetEpr> <subject>WSO2 Carbon Account Recovery</subject> <body> Hi {first-name} We received a request to recover your account user name. The account associated with us indicates that the user name is : {user-name} </body> <footer> Best Regards, WSO2 Carbon Team http://www.wso2.com </footer> <redirectPath></redirectPath> </configuration>
- getUserIdentitySupportedClaims() - This method returns all the claims defined in the Identity Server which are supported and not read only. You need to give the dialect which is by default “http://wso2.org/claims”.
- getCaptcha() - Get the captcha for the current request.
- verifyAccount() - Verifies the captcha, user claim values and tenant domain which is are used to search for the user. You can define the claim values returned from the getUserIdentitySupportedClaims() call. Hence, you can define which claims should be used in the verification by passing only those required. Upon successful verification, the user id is sent by email to the user. Also, this returns the success/failed status of the verification.