~ubuntu-branches/ubuntu/hardy/steam/hardy

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<ldap>

<!-- Server connection settings: -->
<!-- if the <server> tag is commented out, ldap will not be used -->
<!-- <server>ldap://ldap.upb.de</server> -->

<base_dc>o=organization,dc=domain,dc=org</base_dc>
<root_dn></root_dn>
<!-- <groupdn>ou=Group</groupdn> -->
<!-- <userdn>ou=People</userdn> -->

<!-- Your LDAP server might use iso-8859-1 (latin1) instead of utf-8 -->
<charset>utf-8</charset>

<!-- Time (in seconds) that ldap entries will be cached in sTeam.
     Changes on the LDAP server will take that much time to take effect. -->
<cacheTime>60</cacheTime>
<!-- Time (in seconds) between reconnection attempts if the connection to
      the LDAP server breaks down. -->
<reconnectTime>300</reconnectTime>

<!-- username and password for the LDAP-account used to bind to the
     LDAP server. If empty, then each user will be bound separately. -->
<user></user>
<password>?</password>

<!-- User settings: -->
<userAttr>uid</userAttr>
<userClass>person</userClass>
<userId>uidNumber</userId>
<passwordAttr>userPassword</passwordAttr>
<emailAttr>mail</emailAttr>
<iconAttr>userIcon</iconAttr>
<fullnameAttr>sn</fullnameAttr>
<nameAttr>givenName</nameAttr>

<!-- Group settings: -->
<groupAttr>cn</groupAttr>
<groupClass>groupOfNames</groupClass>
<groupId>gidNumber</groupId>
<memberAttr>memberUid</memberAttr>

<!-- Common settings: -->
<descriptionAttr>description</descriptionAttr>

<!-- Syncronization settings: -->
<sync>false</sync>
<!-- <notfound>create</notfound> -->
<notfound>ignore</notfound>
<bindUser>true</bindUser>
<bindUserWithoutDN>false</bindUserWithoutDN>

<objectName>inetOrgPerson</objectName>

<requiredAttr>cn</requiredAttr>
<requiredAttr>sn</requiredAttr>
<requiredAttr>userPassword</requiredAttr>

<!-- adminAccount is the sTeam account that gets mails about ldap problems -->
<adminAccount>root</adminAccount>

</ldap>