]> git.sur5r.net Git - contagged/blob - templates/help.tpl
efa29af3cbb5a9b2d540258c357fdde3772390f4
[contagged] / templates / help.tpl
1
2 <h2>Adding LDAP-Access to your Mailclient</h2>
3
4 <h3>Public Addressbook</h3>
5
6 <p>Use these settings to connect to the public addressbook:</p>
7 <dl>
8   <dt>LDAP-Server</dt>
9   <dd><code>{$conf.ldapserver}</code></dd>
10   
11   <dt>Bind-DN</dt>
12   <dd><code>leave empty</code> (anonymous bind)</dd>
13   
14   <dt>Bind-Password</dt>
15   <dd><code>leave empty</code> (anonymous bind)</dd>
16   
17   <dt>Base/Search-DN</dt>
18   <dd><code>{$conf.publicbook}</code></dd>
19 </dl>
20
21 <h3>Private Addressbook</h3>
22
23 {if $binddn}
24 <p>To access your persanal addressdata use these settings:</p>
25 <dl>
26   <dt>LDAP-Server</dt>
27   <dd><code>{$conf.ldapserver}</code></dd>
28   
29   <dt>Bind-DN</dt>
30   <dd><code>{$binddn}</code></dd>
31   
32   <dt>Bind-Password</dt>
33   <dd><code>your password</code> (The one you used to login here)</dd>
34   
35   <dt>Base/Search-DN</dt>
36   <dd><code>{$conf.privatebook},{$binddn}</code></dd>
37 </dl>
38 {else}
39 <p>Login to see this data</p>
40 {/if}
41
42
43 <br><br>