]> git.sur5r.net Git - contagged/blob - config.php
Dutch language file
[contagged] / config.php
1 <?
2
3   // LDAP URL; if set, takes precedence over ldapserver and ldapport
4   #$conf['ldapurl']     = 'ldaps://ldap.example.com/';
5
6   // Which LDAP Server to use?
7   $conf['ldapserver']  = 'ldap';
8
9   // Which LDAP Port Server to use? (389 is standard, 636 for ssl)
10   $conf['ldapport']    = 389;
11
12   // What is the root dn on this Server?
13   $conf['ldaprootdn']  = 'o=cosmocode, c=de';
14
15   // Where are the user Accounts stored?
16   $conf['usertree']    = 'ou=people, '.$conf['ldaprootdn'];
17
18   // How to match users? %u is replaced by the given login
19   $conf['userfilter']  = '(&(uid=%u)(objectClass=posixAccount))';
20
21   // Use these values to bind to the ldap directory when not logged in (leave blank for anonymous bind)
22   $conf['anonbinddn']  = '';
23   $conf['anonbindpw']  = '';
24
25   // Which language to use (see lang directory)
26   $conf['lang']        = 'en';
27
28   // Where to store public contacts?
29   $conf['publicbook']  = 'ou=contacts, '.$conf['ldaprootdn'];
30
31   // Where to store private contacts (relative to $conf['usertree'])
32   $conf['privatebook'] = 'ou=contacts';
33
34   // Should the additional schema ldapab.schema be used? (0|1)
35   // Note: openxchange and extended are currently exclusive, do not use both at the same time!
36   $conf['extended']    = 1;
37   
38   // Should we use some parts of the openxchange.schema? (0|1)
39   // Note: openxchange and extended are currently exclusive, do not use both at the same time!
40   $conf['openxchange'] = 0;
41  
42   // Should we try to login using the username and password provided by httpd? (0|1)
43   $conf['httpd_auth']  = 0;
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 ?>