2008-02-05 17:11:21 +01:00
|
|
|
|
<?php
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
|
*
|
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
// Configuration LDAP Saisie :
|
|
|
|
|
$GLOBALS['LSconfig'] = array(
|
|
|
|
|
'NetLDAP' => '/usr/share/php/Net/LDAP.php',
|
|
|
|
|
'Smarty' => '/var/www/tmp/Smarty-2.6.18/libs/Smarty.class.php',
|
2008-02-08 18:39:24 +01:00
|
|
|
|
'lang' => 'fr_FR.UTF8',
|
|
|
|
|
'cacheLSrights' => true,
|
|
|
|
|
'ldap_servers' => array (
|
|
|
|
|
array (
|
2008-02-12 18:59:44 +01:00
|
|
|
|
'name' => 'LSexample',
|
2008-02-08 18:39:24 +01:00
|
|
|
|
'ldap_config'=> array(
|
|
|
|
|
'host' => '127.0.0.1',
|
|
|
|
|
'port' => 389,
|
|
|
|
|
'version' => 3,
|
|
|
|
|
'starttls' => false,
|
2008-02-12 18:59:44 +01:00
|
|
|
|
'binddn' => 'uid=eeggs,ou=people,o=ls',
|
2008-02-08 18:39:24 +01:00
|
|
|
|
'bindpw' => 'toto',
|
|
|
|
|
'basedn' => 'o=ls',
|
|
|
|
|
'options' => array(),
|
|
|
|
|
'filter' => '(objectClass=*)',
|
|
|
|
|
'scope' => 'sub'
|
|
|
|
|
),
|
|
|
|
|
'LSadmins' => array (
|
2008-02-12 18:59:44 +01:00
|
|
|
|
'o=ls' => array (
|
|
|
|
|
'uid=eeggs,ou=people,o=ls' => NULL
|
|
|
|
|
),
|
|
|
|
|
'ou=people,o=ls' => array (
|
|
|
|
|
'cn=adminldap,ou=groups,o=ls' => array (
|
2008-02-08 18:39:24 +01:00
|
|
|
|
'attr' => 'uniqueMember',
|
|
|
|
|
'LSobject' => 'LSeegroup'
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'cacheLSrights' => false,
|
|
|
|
|
'authobject' => 'LSeepeople',
|
|
|
|
|
'authobject_pwdattr' => 'userPassword'
|
|
|
|
|
),
|
|
|
|
|
array (
|
|
|
|
|
'name' => 'Ldap 2',
|
|
|
|
|
'ldap_config'=> array(
|
|
|
|
|
'host' => '127.0.0.1',
|
|
|
|
|
'port' => 389,
|
|
|
|
|
'version' => 3,
|
|
|
|
|
'starttls' => false,
|
|
|
|
|
'binddn' => 'uid=toto,ou=people,o=com',
|
|
|
|
|
'bindpw' => 'toto',
|
|
|
|
|
'basedn' => 'o=com',
|
|
|
|
|
'options' => array(),
|
|
|
|
|
'filter' => '(objectClass=*)',
|
|
|
|
|
'scope' => 'sub'
|
|
|
|
|
),
|
|
|
|
|
'subdnobject' => 'LSeecompany',
|
|
|
|
|
'authobject' => 'LSeepeople',
|
|
|
|
|
'authobject_pwdattr' => 'userPassword'
|
|
|
|
|
)
|
|
|
|
|
)
|
2008-02-05 17:11:21 +01:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
//Debug
|
2008-02-12 18:59:44 +01:00
|
|
|
|
$GLOBALS['LSdebug']['active'] = true;
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
2008-02-26 18:40:05 +01:00
|
|
|
|
define('NB_LSOBJECT_LIST',2);
|
|
|
|
|
|
|
|
|
|
define('MAX_SEND_FILE_SIZE',2000000);
|
|
|
|
|
|
2008-02-05 17:11:21 +01:00
|
|
|
|
// D<>finitions des locales
|
|
|
|
|
$textdomain = 'ldapsaisie';
|
|
|
|
|
bindtextdomain($textdomain, '/var/www/ldapsaisie/trunk/l10n');
|
|
|
|
|
textdomain($textdomain);
|
|
|
|
|
setlocale(LC_ALL, $GLOBALS['LSconfig']['lang']);
|
|
|
|
|
|
|
|
|
|
// D<>finitions des dossiers d'inclusions
|
|
|
|
|
define('LS_CONF_DIR','conf/');
|
|
|
|
|
define('LS_INCLUDE_DIR','includes/');
|
|
|
|
|
define('LS_CLASS_DIR', LS_INCLUDE_DIR .'class/');
|
|
|
|
|
define('LS_LIB_DIR', LS_INCLUDE_DIR .'libs/');
|
|
|
|
|
define('LS_ADDONS_DIR', LS_INCLUDE_DIR .'addons/');
|
|
|
|
|
define('LS_JS_DIR', LS_INCLUDE_DIR .'js/');
|
2008-02-26 18:40:05 +01:00
|
|
|
|
define('LS_TMP_DIR', 'tmp/');
|
2008-02-05 17:11:21 +01:00
|
|
|
|
|
|
|
|
|
// Javascript
|
|
|
|
|
$GLOBALS['defaultJSscipts']=array(
|
2008-02-08 18:39:24 +01:00
|
|
|
|
'mootools.js',
|
2008-02-26 18:40:05 +01:00
|
|
|
|
'LSdefault.js'
|
2008-02-05 17:11:21 +01:00
|
|
|
|
);
|
|
|
|
|
|
2008-02-26 18:40:05 +01:00
|
|
|
|
if ($GLOBALS['LSdebug']['active']) {
|
|
|
|
|
$GLOBALS['defaultJSscipts'][]='Debugger.js';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// PHP values
|
|
|
|
|
ini_set( 'magic_quotes_gpc', 'off' );
|
|
|
|
|
ini_set( 'magic_quotes_sybase', 'off' );
|
|
|
|
|
ini_set( 'magic_quotes_runtime', 'off' );
|
|
|
|
|
|
2008-02-05 17:11:21 +01:00
|
|
|
|
?>
|