Browse Source

Fix for 158031: add default indices needed by Windows Sync

David Boreham 20 years ago
parent
commit
a5a7c6c10c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      ldap/admin/src/create_instance.c

+ 2 - 0
ldap/admin/src/create_instance.c

@@ -4253,6 +4253,8 @@ ds_gen_index(FILE* f, char* belowdn)
     MKINDEX("sn", belowdn, 0, "pres", "eq", "sub");
     MKINDEX("telephoneNumber", belowdn, 0, "pres", "eq", "sub");
     MKINDEX("uid", belowdn, 0, "eq", NULL, NULL);
+    MKINDEX("ntUniqueId", belowdn, 0, "eq", NULL, NULL);
+    MKINDEX("ntUserDomainId", belowdn, 0, "eq", NULL, NULL);
     MKINDEX("uniquemember", belowdn, 0, "eq", NULL, NULL);
 }