mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
b8af4a67ea
- filter -> SQL translation bugfixes - several memory leaks fixups - improved configurability: - allows definition of uppercasing function to support CIS matching on databases that do case sensitive compares (this fixes up Oracle issues, example updated) - allows more flexibility in stored procedures interface (different parameter order, optional return codes - see samples, and comments in backsql.h) - synchronize function interfaces to recent changes in prototypes ("const" clauses etc.) made for all backends (those changes led to compile-time errors)
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
# $OpenLDAP$
|
|
#
|
|
# See slapd.conf(5) for details on configuration options.
|
|
# This file should NOT be world readable.
|
|
#
|
|
include ./slapd.at.conf
|
|
include ./slapd.oc.conf
|
|
|
|
# Define global ACLs to disable default read access.
|
|
|
|
# Do not enable referrals until AFTER you have a working directory
|
|
# service AND an understanding of referrals.
|
|
#referral ldap://root.openldap.org
|
|
|
|
pidfile ./slapd.pid
|
|
argsfile ./slapd.args
|
|
|
|
#######################################################################
|
|
# ldbm database definitions
|
|
#######################################################################
|
|
|
|
#database ldbm
|
|
#suffix "dc=your-domain, dc=com"
|
|
#suffix "o=Your Organization Name, c=US"
|
|
#directory /usr/tmp
|
|
#rootdn "cn=root, dc=your-domain, dc=com"
|
|
#rootdn "cn=root, o=Your Organization Name, c=US"
|
|
#rootpw secret
|
|
# cleartext passwords, especially for the rootdn, should
|
|
# be avoid. See slapd.conf(5) for details.
|
|
|
|
database sql
|
|
suffix "o=sql,c=RU"
|
|
rootdn "cn=root,o=sql,c=RU"
|
|
rootpw secret
|
|
#dbname ldap_ora8_ms
|
|
dbname ldap_ora8
|
|
dbuser ldap
|
|
dbpasswd ldap
|
|
subtree_cond "UPPER(ldap_entries.dn) LIKE CONCAT('%',UPPER(?))"
|
|
insentry_query "INSERT INTO ldap_entries (id,dn,objclass,parent,keyval) VALUES (ldap_entry_ids.nextval,?,?,?,?)"
|
|
upper_func UPPER
|