[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: Starting a new ldap



For archival purposes on this list.. I ended up using another schema file of:

#Attribues start here

attributetype (1.3.6.1.4.1.11048.1.1.1.11
        NAME 'custID'
        EQUALITY caseExactMatch
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
        DESC 'Unique ID value to identify a specific customer' )

#object class start here

objectClass (1.3.6.1.4.1.11048.1.1.2.5
        NAME 'customer'
        SUP top
        STRUCTURAL
        DESC 'Customer information (container class)'
        MUST (cn $ custID $ mail $ userPassword $ mailMessageStore $ uid))


and am now using custID instead of x500uniqueIdentifier... though I'd
still like to know why x500 did not work.