-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconf.php.dist
31 lines (31 loc) · 969 Bytes
/
conf.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* config for syncuuids.php -> rename to conf.php to make it work!
*/
return array (
'ldap' => array(
'username' => 'cn=admin,dc=example,dc=com',
'password' => '****',
'baseDn' => 'dc=example,dc=com',
'host' => 'localhost',
),
'logfile' => '/var/log/tine20/sync.log',
'loglevel' => 7,
'inputfile' => 'tine20.sql',
'outputfile' => 'tine20synced.sql',
// name mapping (ldap => tine)
'groupNameMapping' => array(
'users' => 'Users',
'admins' => 'Administrators',
'elektronik' => 'Elektroniklabor',
'gd' => 'GD',
// @todo add
//'jeder' => 'Users',
// '?' => 'IT-Team',
// '?' => 'VZ',
// '?' => 'Z',
// '?' => 'ZI',
// '?' => 'ZII',
// '?' => 'ZII-3',
),
);