Introduction
URAC micro-service V3 configuration variables that are needed and can be customized
...
Name | Type | Description | Example |
---|---|---|---|
hashIterations | integer | Hashing iteration value used by SOAJS hasher to encrypt/compare passwords | 12 |
optionalAlgorithm | string | Password Hashing algorithm name. "aes256" or "des". You can go to List of Crypto Algorithms to find the name of the algorithm that you can use. You do not need to set this configuration if you do not want to specify an algorithm | aes256 |
More information can be found in the Complete Example
...
Name | Type | Description | Example | ||
---|---|---|---|---|---|
validateJoin | Boolean | This configuration controllers the status of a user after joining. aka ('pendingJoin' : 'active') | true | ||
membership | Object | This configuration allows you to configure different type of membership that can be set while joining to drive different user configuration like groups (make sure the groups is available). Should be an array of groups. |
|
...
More information about Variables used, custom data fields used in "content", and examples of the configuration can be found under Mail Configuration
Examples: In provision
Code Block | ||||
---|---|---|---|---|
| ||||
"commonFields" : { "mail": { // to control the smtp configuration "from": 'me@localhost.com', "transport": {...} }, "sms":{ "from": '16170000000', "twilio": { "accountSid": "WWWW", "authToken": "WWWW" } } }, "urac" : { "linkslink": {...}, // this object to control the links in the emails "mail": { // this object to control the content of the emails "join": {...}, // Join - mail content configuration "forgotPassword": {...}, // Forgot password mail - content configuration "addUser": {...}, // Add User - mail content configuration "changeUserStatus": {...}, // Change User Status - mail content configuration "changeEmail": {...} // Change Email - mail content configuration }, "sms": { "inviteToJoin": {...} } } |
Examples: In custom registry
You should create to entries under custom registry (one for mail, one for urac, and one for uracsms) as follow:
with the following configuration content:
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "linkslink": {...}, // this object to control the links in the emails "addUser": "...", "changeEmail": "...", "forgotPassword": "...", "inviteToJoin": "...", "join": "..." }, "mail": { // this object to control the content of the emails "addUser": {...}, "changeEmail": {...}, "changePin": {...}, "changeUserStatus": {...}, "forgotPassword": {...}, "invitePin": {...}, "join": {...}, "resetPin": {...} "inviteToJoin": {...} }, "sms": { "inviteToJoin": {...} } } |
Code Block | ||||
---|---|---|---|---|
| ||||
{ // to control the smtp configuration
"from": '16170000000',
"twilio": {...}
} |
4. Mail token configuration
...