blob: c44f162ad6fc938a4a99d787b70b4fa963acedcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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"}}
|