What happens to my existing users once I start to use the LDAP User Sync module?

Summary: Users that already exist in the system with a matching username or email address will be completely overwritten by the syncing process.

Important

  • This is usually a task for your IT Administrator

  • There is a limit of 1000 users per User Sync


What if you don't want to overwrite them?

You will have to update your LDAP query to exclude those users specifically or exclude an entire group, using the (!(query))  syntax.  See an syntax example below.

 

LDAP Example search results

The results should be a list of users with this structure as output

('cn=Janet Baker,ou=students,dc=cheqroom,dc=com',
 {'cn': ['Janet Baker'],
  'departmentNumber': ['Professional Journalism'],
  'mail': ['baker.janet@cheqroom.com'],
  'objectClass': ['inetOrgPerson'],
  'sn': ['baker'],
  'uid': ['baker.janet']})
('cn=Darren Kirk,ou=students,dc=cheqroom,dc=com',
 {'cn': ['Darren Kirk'],
  'departmentNumber': ['Professional Journalism'],
  'mail': ['kirk.darren@cheqroom.com'],
  'objectClass': ['inetOrgPerson'],
  'sn': ['kirk'],
'uid': ['kirk.darren']})