Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Edit profile.config to turn on and configure the login permission function. The below settings will turn function on, ensure confirmation email is sent, define who at the OEM that will receive the request for approval email, and which permissions the new user shall have by default.

    Code Block
    <LoginPermissionEnabled>true</LoginPermissionEnabled>
    <RegisterConfirmationEmailEnabled>true</RegisterConfirmationEmailEnabled>
    <NewUserRegisterNotificationReceiver>admin@oem.comn</NewUserRegisterNotificationReceiver>
    <UserDefaultGroupsList>EndClient,CompanyAdministrators</UserDefaultGroupsList>
    
    
  2. Ensure loginpermission is added as a resource in permissions.config.

    Code Block
    <ResourcePermission>
      <Id>8</Id>
      <Enabled>true</Enabled>
      <Name>LoginPermission</Name>
      <Note>Users can sign in</Note>
      <Groups>
        <string>LoginPermission</string>
      </Groups>
    </ResourcePermission>
    
    
  3. Update email templates. The following templates are used. Sample templates are attached to this guide.

...