1999-08-30 21:17:01 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 02:16:36 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2021-01-11 14:25:53 -05:00
|
|
|
* Copyright 1998-2021 The OpenLDAP Foundation.
|
1998-12-28 14:51:35 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
2001-05-28 23:29:53 -04:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
2003-11-26 02:16:36 -05:00
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1998-12-28 14:51:35 -05:00
|
|
|
*/
|
2003-11-26 02:16:36 -05:00
|
|
|
/* Portions Copyright (c) 1994 Regents of the University of Michigan.
|
1998-08-08 20:43:13 -04:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
1999-06-16 23:54:25 -04:00
|
|
|
* This file controls defaults for OpenLDAP package.
|
1999-12-13 19:30:02 -05:00
|
|
|
* You probably do not need to edit the defaults provided by this file.
|
1998-08-08 20:43:13 -04:00
|
|
|
*/
|
|
|
|
|
|
1999-06-16 23:54:25 -04:00
|
|
|
#ifndef _LDAP_DEFAULTS_H
|
|
|
|
|
#define _LDAP_DEFAULTS_H
|
|
|
|
|
|
1998-08-19 22:18:28 -04:00
|
|
|
|
1999-06-16 23:54:25 -04:00
|
|
|
#include <ldap_config.h>
|
1999-03-17 17:34:17 -05:00
|
|
|
|
1999-06-16 23:54:25 -04:00
|
|
|
#define LDAP_CONF_FILE LDAP_SYSCONFDIR LDAP_DIRSEP "ldap.conf"
|
|
|
|
|
#define LDAP_USERRC_FILE "ldaprc"
|
|
|
|
|
#define LDAP_ENV_PREFIX "LDAP"
|
1998-08-19 23:56:19 -04:00
|
|
|
|
2000-06-24 20:35:17 -04:00
|
|
|
/* default ldapi:// socket */
|
2003-12-18 21:28:06 -05:00
|
|
|
#define LDAPI_SOCK LDAP_RUNDIR LDAP_DIRSEP "run" LDAP_DIRSEP "ldapi"
|
2000-06-24 20:35:17 -04:00
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* SLAPD DEFINITIONS
|
|
|
|
|
*/
|
|
|
|
|
/* location of the default slapd config file */
|
1999-06-16 23:54:25 -04:00
|
|
|
#define SLAPD_DEFAULT_CONFIGFILE LDAP_SYSCONFDIR LDAP_DIRSEP "slapd.conf"
|
2005-03-15 12:32:02 -05:00
|
|
|
#define SLAPD_DEFAULT_CONFIGDIR LDAP_SYSCONFDIR LDAP_DIRSEP "slapd.d"
|
2003-06-30 14:46:32 -04:00
|
|
|
#define SLAPD_DEFAULT_DB_DIR LDAP_RUNDIR LDAP_DIRSEP "openldap-data"
|
2002-02-02 01:18:11 -05:00
|
|
|
#define SLAPD_DEFAULT_DB_MODE 0600
|
2000-09-03 19:48:35 -04:00
|
|
|
#define SLAPD_DEFAULT_UCDATA LDAP_DATADIR LDAP_DIRSEP "ucdata"
|
1998-10-23 22:42:38 -04:00
|
|
|
/* default max deref depth for aliases */
|
2001-12-23 22:49:54 -05:00
|
|
|
#define SLAPD_DEFAULT_MAXDEREFDEPTH 15
|
1998-08-08 20:43:13 -04:00
|
|
|
/* default sizelimit on number of entries from a search */
|
|
|
|
|
#define SLAPD_DEFAULT_SIZELIMIT 500
|
|
|
|
|
/* default timelimit to spend on a search */
|
|
|
|
|
#define SLAPD_DEFAULT_TIMELIMIT 3600
|
|
|
|
|
|
2000-05-15 19:37:16 -04:00
|
|
|
/* the following DNs must be normalized! */
|
2000-06-13 21:29:51 -04:00
|
|
|
/* dn of the default subschema subentry */
|
|
|
|
|
#define SLAPD_SCHEMA_DN "cn=Subschema"
|
|
|
|
|
/* dn of the default "monitor" subentry */
|
2000-05-15 19:37:16 -04:00
|
|
|
#define SLAPD_MONITOR_DN "cn=Monitor"
|
1999-01-19 00:10:50 -05:00
|
|
|
|
2017-03-08 17:59:57 -05:00
|
|
|
/*
|
|
|
|
|
* LLOADD DEFINITIONS
|
|
|
|
|
*/
|
|
|
|
|
#define LLOADD_DEFAULT_CONFIGFILE LDAP_SYSCONFDIR LDAP_DIRSEP "lloadd.conf"
|
|
|
|
|
|
1998-08-19 22:18:28 -04:00
|
|
|
#endif /* _LDAP_CONFIG_H */
|