]> git.sur5r.net Git - contagged/blob - config.php
changed layout, some HTML cleanup
[contagged] / config.php
1 <?
2
3   // Which LDAP Server to use?
4   $conf[ldapserver]  = 'ldap';
5
6   // Which LDAP Port Server to use? (389 is standard, 636 for ssl)
7   $conf[ldapport]    = 389;
8
9   // What is the root dn on this Server?
10   $conf[ldaprootdn]  = 'o=cosmocode, c=de';
11
12   // Where are the user Accounts stored?
13   $conf[usertree]    = 'ou=people, '.$conf[ldaprootdn];
14
15   // How to match users? %u is replaced by the given login
16   $conf[userfilter]  = '(&(uid=%u)(objectClass=posixAccount))';
17
18   // Use these values to bind to the ldap directory when not logged in (leave blank for anonymous bind)
19   $conf[anonbinddn]  = '';
20   $conf[anonbindpw]  = '';
21
22   // Which language to use (see lang directory)
23   $conf[lang]        = 'de';
24
25   // Where to store public contacts?
26   $conf[publicbook]  = 'ou=contacts, '.$conf[ldaprootdn];
27
28   // Where to store private contacts (relative to $conf[usertree])
29   $conf[privatebook] = 'ou=contacts';
30
31   // Should the additional schema ldapab.schema be used? (0|1)
32   // Note: openxchange and extended are currently exclusive, do not use both at the same time!
33   $conf[extended]    = 1;
34   
35   // Should we use some parts of the openxchange.schema? (0|1)
36   // Note: openxchange and extended are currently exclusive, do not use both at the same time!
37   $conf[openxchange] = 0;
38  
39   // Should we try to login using the username and password provided by httpd? (0|1)
40   $conf[httpd_auth]  = 1;
41  
42   // Should the additional schema ldapab.schema be used? (0|1)
43   $conf[extended]    = 1;
44
45   // Dateformat for birthdays when using extended schema
46   // see http://www.php.net/manual/en/function.strftime.php
47   #$conf[dateformat]  = '%Y/%m/%d';
48   $conf[dateformat]  = '%d.%m.%Y';
49
50   // Force recompilation of smarty templates?
51   $conf[smartycompile] = 0;
52
53 ?>