mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
|
# example ldap filter file
|
||
|
#
|
||
|
# lines like this that start with # or empty lines are ignored
|
||
|
#
|
||
|
# syntax:
|
||
|
#
|
||
|
# <tag>
|
||
|
# <pattern1> <delimiters> <filter1-1> <desc1-1> [<scope>]
|
||
|
# <filter1-2> <desc1-2> [<scope>]
|
||
|
#
|
||
|
# <pattern2> <delimiters> <filter2-1> <desc2-1> [<scope>] ...
|
||
|
#
|
||
|
# The "desc" should describe the filter and it should correctly complete
|
||
|
# both of the following phrases:
|
||
|
#
|
||
|
# One <desc> match was found for...
|
||
|
# Three <desc> matches were found for...
|
||
|
#
|
||
|
# The scope is optional, and should be one of:
|
||
|
# "base"
|
||
|
# "onelevel"
|
||
|
# "subtree"
|
||
|
# if it is included.
|
||
|
#
|
||
|
|
||
|
"ldap-example"
|
||
|
"=" " " "%v" "arbitrary filter"
|
||
|
|
||
|
"^[+]*[0-9][ 0-9-]*$" " " "(telephoneNumber=*%v)" "phone number"
|
||
|
|
||
|
"@" " " "(mail=%v)" "email address"
|
||
|
"(mail=%v*)" "start of email address"
|
||
|
|
||
|
"^.[. _].*" ". _" "(cn=%v1* %v2-)" "first initial"
|
||
|
|
||
|
".*[. _].$" ". _" "(cn=%v1-*)" "last initial"
|
||
|
|
||
|
"[. _]" ". _" "(|(sn=%v1-)(cn=%v1-))" "exact"
|
||
|
"(|(sn~=%v1-)(cn~=%v1-))" "approximate"
|
||
|
|
||
|
".*" ". " "(|(cn=%v1)(sn=%v1)(uid=%v1))" "exact"
|
||
|
"(|(cn~=%v1)(sn~=%v1))" "approximate"
|
||
|
|