...
Configure the following email settings in the <
IS_HOME>/repository/conf/output-event-adapters.xml
file.mail.smtp.from
Provide the email address of the SMTP account. mail.smtp.user
Provide the username of the SMTP account. mail.smtp.password
Provide the password of the SMTP account. Code Block <adapterConfig type="email"> <!-- Comment mail.smtp.user and mail.smtp.password properties to support connecting SMTP servers which use trust based authentication rather username/password authentication --> <property key="mail.smtp.from">abcd@gmail.com</property> <property key="mail.smtp.user">abcd</property> <property key="mail.smtp.password">xxxx</property> <property key="mail.smtp.host">smtp.gmail.com</property> <property key="mail.smtp.port">587</property> <property key="mail.smtp.starttls.enable">true</property> <property key="mail.smtp.auth">true</property> <!-- Thread Pool Related Properties --> <property key="minThread">8</property> <property key="maxThread">100</property> <property key="keepAliveTimeInMillis">20000</property> <property key="jobQueueSize">10000</property> </adapterConfig>
Tip Tip: The email template used to send this email notification is the AccountConfirmation template.
You can edit and customize the email template. For more information on how to do this, see Customizing Automated Emails.
- Start the WSO2 IS and log in to the management console:
https://<IS_HOST>:<IS_PORT>/carbon
If you started WSO2 IS previously, make sure to stop it and start it again for the email settings to get updated in the pack. - Click Resident under Identity Providers on the Main tab and expand the Navigate to Main tab > Identity Providers > Resident and expand Account Management Policies tab.tab
Expand the User Self Registration tab and configure the following properties as required.
Field Description Enable Self User Registration Select to enable self registration. Enable Account Lock On Creation Enabled Select to enable account locking during self registration. Enable Notification Internally Management Select if you want the notification handling to be managed by the WSO2 Identity Server. If the client application handles notification sending already, unselect it. This check only applies if Security Question Based Password Recovery is enabled. Enable reCaptcha Select to enable reCaptcha for the self sign up flow. See Configuring reCaptcha for Challenge Question-Based Password Recovery Flow for more information. User self registration code expiry time Set the number of minutes for which the verification code should be valid. The verification code that is provided to the user to initiate the self sign-up flow will be invalid after the time specified here has elapsed.
Note Alternatively, you can configure the expiry time in the
identity.xml
configuration file.Code Block <SelfRegistration> <VerificationCode> <ExpiryTime>1440</ExpiryTime> </VerificationCode> </SelfRegistration>
Expand the Login Policies tab, then the Account Locking tab and select Account Lock Enabled.
This allows the account to be locked until the user confirms the account. Once the user activates the account through the email received, the account is unlocked. For more information about account locking, see Account Locking.Set Add consent purposes accordingly to set up the user consent request for user information that is requested during self-registration. For more information, see Consent Management for Self Sign Up.
...
Tip |
---|
For information on the REST APIs for self sign-up, see Using the Self Sign-Up Using REST APIs. |
Try out self sign up
- Access the WSO2 Identity Server dashboard.
Click the Register Now? link .
Once the user has registered, first you receive an account lock email because the account is locked until you confirm the account and then you receive an account confirmation email.and then enter the new user's username.Info title Register Users for a Tenant If you want to self sign up a user for a specific tenant, you need to provide the Username in the following format:
For example, if you have a tenant domain as<USERNAME>@<TENAND_DOMAIN>
foo.com
, the username needs to bekim@foo.com
Fill in the user details, provide consent to share the requested information and then click Register.
Tip For more information about consent management for self sign up, see Consent Management for Self Sign Up.
Once the user has registered, first you receive an account lock email because the account is locked until you confirm the account and then you receive an account confirmation email.
Click Confirm Registration in the email or copy the link in the email to your browser to confirm the account.
Once you confirm the account, the account is unlocked and an email is sent.
Panel | ||
---|---|---|
| ||
Follow the steps given below to resend the confirmation email.
|
Related Links
By default, the claim values of the identity claims used in this feature are stored in the JDBC datasource configured in the identity.xml
file. See Configuring Claims for more information on how to store the claim values in the user store.