While creating contacts in Active Directory, CMN Directory Connector has the option to Choose Users & Contacts, not Users ONLY. This may cause issues if the Active Directory environment has contacts for the existing Domino users already.
You can manually add a person-search filter (mailfile=*) . This will filter out entries without a Notes mail file.
To manually edit filtering rules:
1. Open the configuration.xml file
2. Look for the block of XML specific to each connector name:
<ConnectorSetting>
<Name>test1</Name>
- test1 is the connector name.
3. Find the <SyncSettings> area and search for:
<PersonSearch>
<IsSet>false</IsSet>
<IsRequired>false</IsRequired>
<Setting>person-search</Setting>
</PersonSearch>
4. Update this section to:
<PersonSearch>
<IsSet>true</IsSet>
<IsRequired>false</IsRequired>
<Setting>person-search</Setting>
<Value>(mail=*@domain.com)</Value>
</PersonSearch>
-@domain.com is replaced with the source SMTP domain for
the users that should be extracted by this connector.
Domino contacts should not have mail files.
Add to any existing person-search using standard LDAP search filter syntax the (mailfile=*). The example is limiting the search to users with the email address domain of domain.com. Change it to search for only Notes people with a mail file.