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