diff options
Diffstat (limited to 'html/server.html')
| -rw-r--r-- | html/server.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/html/server.html b/html/server.html new file mode 100644 index 0000000..ef2929c --- /dev/null +++ b/html/server.html @@ -0,0 +1,79 @@ +{{template "header.html" "Server Details | Libremail"}} +{{template "navbar.html"}} +{{template "alert.html" .}} + +<div class="container"> + <div class="row"> + <div class="col-md-12"> + <h1>Server details</h1> + <br> + <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://iamfabulous.de/webmail" title="Webmail">this link <span class="fa fa-external-link-square"></a> to open roundcube now. + <br> + <strong>Use your mail address and the passwort as credentials to log in.</strong> + <br> + The TLS certificate is signed to 'webmail.iamfabulous.de' + </p> + <p> + <strong>Please note:</strong> 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 client e.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" .Language}} |
