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