]> git.sur5r.net Git - contagged/blob - config.php
fixed marker and search for CSV export
[contagged] / config.php
1 <?
2
3   // Which LDAP Server to use?
4   $conf[ldapserver]  = 'ldap';
5
6   // What is the root dn on this Server?
7   $conf[ldaprootdn]  = 'o=cosmocode, c=de';
8
9   // Where are the user Accounts stored?
10   $conf[usertree]    = 'ou=people, '.$conf[ldaprootdn];
11
12   // How to match users? %u is replaced by the given login
13   $conf[userfilter]  = '(&(uid=%u)(objectClass=posixAccount))';
14
15   // Which language to use (see lang directory)
16   $conf[lang]        = 'de';
17
18   // Where to store public contacts?
19   $conf[publicbook]  = 'ou=contacts, '.$conf[ldaprootdn];
20
21   // Where to store private contacts (relative to $conf[usertree])
22   $conf[privatebook] = 'ou=contacts';
23
24   // Should the additional schema ldapab.schema be used? (0|1)
25   $conf[extended]    = 1;
26
27   // Dateformat for birthdays when using extended schema
28   // see http://www.php.net/manual/en/function.strftime.php
29   #$conf[dateformat]  = '%Y/%m/%d';
30   $conf[dateformat]  = '%d.%m.%Y';
31
32   // Force recompilation of smarty templates?
33   $conf[smartycompile] = 0;
34 ?>