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

« back to all changes in this revision

Viewing changes to config/modules/ldap.cfg

  • Committer: Bazaar Package Importer
  • Author(s): Alain Schroeder
  • Date: 2006-11-21 16:03:12 UTC
  • mfrom: (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061121160312-nf96y6nihzsyd2uv
Tags: 2.2.31-3
Add patch to prevent inconsistent data after shutdown.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<ldap>
 
3
 
 
4
<!-- Server connection settings: -->
 
5
<!-- if the <server> tag is commented out, ldap will not be used -->
 
6
<!-- <server>ldap://ldap.upb.de</server> -->
 
7
 
 
8
<base_dc>o=organization,dc=domain,dc=org</base_dc>
 
9
<root_dn></root_dn>
 
10
<!-- <groupdn>ou=Group</groupdn> -->
 
11
<!-- <userdn>ou=People</userdn> -->
 
12
 
 
13
<!-- Your LDAP server might use iso-8859-1 (latin1) instead of utf-8 -->
 
14
<charset>utf-8</charset>
 
15
 
 
16
<!-- Time (in seconds) that ldap entries will be cached in sTeam.
 
17
     Changes on the LDAP server will take that much time to take effect. -->
 
18
<cacheTime>60</cacheTime>
 
19
<!-- Time (in seconds) between reconnection attempts if the connection to
 
20
      the LDAP server breaks down. -->
 
21
<reconnectTime>300</reconnectTime>
 
22
 
 
23
<!-- username and password for the LDAP-account used to bind to the
 
24
     LDAP server. If empty, then each user will be bound separately. -->
 
25
<user></user>
 
26
<password>?</password>
 
27
 
 
28
<!-- User settings: -->
 
29
<userAttr>uid</userAttr>
 
30
<userClass>person</userClass>
 
31
<userId>uidNumber</userId>
 
32
<passwordAttr>userPassword</passwordAttr>
 
33
<emailAttr>mail</emailAttr>
 
34
<iconAttr>userIcon</iconAttr>
 
35
<fullnameAttr>sn</fullnameAttr>
 
36
<nameAttr>givenName</nameAttr>
 
37
 
 
38
<!-- Group settings: -->
 
39
<groupAttr>cn</groupAttr>
 
40
<groupClass>groupOfNames</groupClass>
 
41
<groupId>gidNumber</groupId>
 
42
<memberAttr>memberUid</memberAttr>
 
43
 
 
44
<!-- Common settings: -->
 
45
<descriptionAttr>description</descriptionAttr>
 
46
 
 
47
<!-- Syncronization settings: -->
 
48
<sync>false</sync>
 
49
<!-- <notfound>create</notfound> -->
 
50
<notfound>ignore</notfound>
 
51
<bindUser>true</bindUser>
 
52
<bindUserWithoutDN>false</bindUserWithoutDN>
 
53
 
 
54
<objectName>inetOrgPerson</objectName>
 
55
 
 
56
<requiredAttr>cn</requiredAttr>
 
57
<requiredAttr>sn</requiredAttr>
 
58
<requiredAttr>userPassword</requiredAttr>
 
59
 
 
60
<!-- adminAccount is the sTeam account that gets mails about ldap problems -->
 
61
<adminAccount>root</adminAccount>
 
62
 
 
63
</ldap>