diff options
| author | horus_arch | 2015-03-23 10:58:54 +0100 |
|---|---|---|
| committer | horus_arch | 2015-03-23 10:58:54 +0100 |
| commit | 05194f3a09b2382f269d31e6e2fa472a7b95e5c1 (patch) | |
| tree | 3a8aa81ae33e9b97149a55ff6a715caa3c93dda9 /views/server.html | |
| parent | 558fe8ba9fb42231b34977fef542c43a34b3bd00 (diff) | |
| download | freemail-05194f3a09b2382f269d31e6e2fa472a7b95e5c1.tar.gz | |
Add html documentation. Change password handler.
Diffstat (limited to 'views/server.html')
| -rw-r--r-- | views/server.html | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/views/server.html b/views/server.html new file mode 100644 index 0000000..c44f162 --- /dev/null +++ b/views/server.html @@ -0,0 +1,100 @@ +{{template "header.html"}} +{{template "navbar.html"}} + +{{if .Error}} +<div class="container"> + <div class="row"> + {{range .Error}} + <p id="dd-alert-danger" class="col-md-4 col-md-offset-4 alert alert-danger alert-dismissible shadow-z-2" role="alert"> + <button type="button" class="close" data-dismiss="alert" aria-label="close"><span aria-hidden="true">×</span></button> + {{.}} + </p> + {{end}} + </div> +</div> +{{end}} +{{if .Success}} +<div class="container"> + <div class="row"> + {{range .Success}} + <p id="dd-alert-success" class="col-md-4 col-md-offset-4 alert alert-success alert-dismissible shadow-z-2" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="close"><span aria-hidden="true">×</span></button> + {{.}} + </p> + {{end}} + </div> +</div> +{{end}} + +<div class="container"> + <div class="row"> + <div class="col-md-12"> + <h1>Server details</h1> + <div class="well well-lg"> + <p>Everything you need to know to use Libremail.</p> + <ul class="list-unstyled"> + <li> + <h2>Webmail</h2> + <p>You can use the webmail interface to browse your emails with your webbrowser of choice. Use <a href="https://webmail.iamfabulous.de/" title="Webmail">this link <span class="fa fa-external-link-square"></a> to open roundcube now. + <br> + <strong>Use your mail adress and the passwort as credentials to log in.</strong> + <br> + <br> + The TLS certificate is signed to 'webmail.iamfabulous.de' + <br> + Please note: Unfortunalety roundcube does not support GPG encryption yet.</p> + </li> + <li> + <h2>SMTP</h2> + <p>We use Postfix as our SMTP server. It's responsible to send and recieve mails. + <br> + The TLS certificate is signed to 'mx.iamfabulous.de'</p> + <p><strong>Ports:</strong></p> + <ul> + <li> + 25 <strong>STARTTLS</strong> + </li> + <li> + 465 <strong>SMTPS</strong> + </li> + <li> + 587 <strong>STARTTLS</strong> + </li> + </ul> + </li> + <li> + <h2>IMAP</h2> + <p>IMAP is used to manage the mails on the server. Nearly all of the clients (e.g. your phone or thunderbird) use IMAP. Dovecot is responsible for this task. + <br> + The TLS certificate is signed to 'mx.iamfabulous.de'</p> + <p><strong>Ports:</strong></p> + <ul> + <li> + 143 <strong>TLS</strong> + </li> + <li> + 993 <strong>TLS</strong> + </li> + </ul> + </li> + <li> + <h2>POP3</h2> + <p>POP3 is used to pull the mails from the server to the cliente.g. your phone or thunderbird. Dovecot also handles your POP3 connections. + <br> + The TLS certificate is signed to 'mx.iamfabulous.de'</p> + <p><strong>Ports:</strong></p> + <ul> + <li> + 110 <strong>TLS</strong> + </li> + <li> + 995 <strong>TLS</strong> + </li> + </ul> + </li> + </ul> + + </div> + </div> + </div> +</div> +{{template "footer.html"}} |
