mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
Add substring matching rules for some of the olc-schema attributes.
Allows for easy extraction of individual objectclass definitions using matchedValues searches.
This commit is contained in:
parent
6a6626b49d
commit
61029a3ecf
@ -319,6 +319,7 @@ static ConfigTable config_back_cf_table[] = {
|
||||
&config_generic, "( OLcfgGlAt:4 NAME 'olcAttributeTypes' "
|
||||
"DESC 'OpenLDAP attributeTypes' "
|
||||
"EQUALITY caseIgnoreMatch "
|
||||
"SUBSTR caseIgnoreSubstringsMatch "
|
||||
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
|
||||
NULL, NULL },
|
||||
{ "authid-rewrite", NULL, 2, 0, STRLENOF( "authid-rewrite" ),
|
||||
@ -368,6 +369,7 @@ static ConfigTable config_back_cf_table[] = {
|
||||
&config_generic, "( OLcfgGlAt:16 NAME 'olcDitContentRules' "
|
||||
"DESC 'OpenLDAP DIT content rules' "
|
||||
"EQUALITY caseIgnoreMatch "
|
||||
"SUBSTR caseIgnoreSubstringsMatch "
|
||||
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
|
||||
NULL, NULL },
|
||||
{ "extra_attrs", "attrlist", 2, 2, 0, ARG_DB|ARG_MAGIC,
|
||||
@ -414,6 +416,7 @@ static ConfigTable config_back_cf_table[] = {
|
||||
&config_generic, "( OLcfgGlAt:85 NAME 'olcLdapSyntaxes' "
|
||||
"DESC 'OpenLDAP ldapSyntax' "
|
||||
"EQUALITY caseIgnoreMatch "
|
||||
"SUBSTR caseIgnoreSubstringsMatch "
|
||||
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
|
||||
NULL, NULL },
|
||||
{ "limits", "limits", 2, 0, 0, ARG_DB|ARG_MAGIC|CFG_LIMITS,
|
||||
@ -469,11 +472,13 @@ static ConfigTable config_back_cf_table[] = {
|
||||
&config_generic, "( OLcfgGlAt:32 NAME 'olcObjectClasses' "
|
||||
"DESC 'OpenLDAP object classes' "
|
||||
"EQUALITY caseIgnoreMatch "
|
||||
"SUBSTR caseIgnoreSubstringsMatch "
|
||||
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )",
|
||||
NULL, NULL },
|
||||
{ "objectidentifier", "name> <oid", 3, 3, 0, ARG_MAGIC|CFG_OID,
|
||||
&config_generic, "( OLcfgGlAt:33 NAME 'olcObjectIdentifier' "
|
||||
"EQUALITY caseIgnoreMatch "
|
||||
"SUBSTR caseIgnoreSubstringsMatch "
|
||||
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )", NULL, NULL },
|
||||
{ "overlay", "overlay", 2, 2, 0, ARG_MAGIC,
|
||||
&config_overlay, "( OLcfgGlAt:34 NAME 'olcOverlay' "
|
||||
|
Loading…
Reference in New Issue
Block a user