Configure Active Directory Server User Authentication

User Emails

The email address associated with the AD User is automatically added to the Sintelix user profile. If the AD email is different from the email address in the Sintelix User profile, then the user profile is updated to the AD email address.

User Emails

To configure Active Directory server user authentication:

  1. Go to the file: <Sintelix Database Directory>\external-users\user_repositories.xml

    To find the location of your Sintelix database folder, select the Status tab and find the System Configuration section. the location is displayed in the Main datastore location field.

  2. In the Configurations section under ‘example: an Active Directory repository’, make the changes you require to the code. Use the code below as a guide.
Examples

Example

Copy
<item class="com.sintelix.semanticportal.login.external.ActiveDirectoryConfiguration">
    <url>ldap://localhost:389/</url>

    <defaultDomain>example.com</defaultDomain>
    <userSearchPattern>(&(objectClass=user)(userPrincipalName={0}))</userSearchPattern>

    <adminGroups>
        <item>Admins</item>
    </adminGroups>
    <userGroups role="CONFIGURE">
        <item>Admins</item>
    </userGroups>
    <userGroups role="ANALYST">
        <item>Users</item>
    </userGroups>
    <allAdmins>false</allAdmins>
    <allUsers role="CONFIGURE">false</allUsers>
</item>