summaryrefslogtreecommitdiff
path: root/views/about.html
blob: b3d77e3127d05c4cc53980740fd99db254d6fcb9 (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
{{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">&times;</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">&times;</span></button>
	{{.}}
		</p>
	{{end}}
	</div>
</div>
{{end}}

<!--div class="jumbotron">
	<div class="container">
		<h1>About</h1>
		<p>Everything about Libremail</p>
	</div>
</div-->

<div class="container">
	<div class="row">
	<div class="col-md-12">
	<h1>About Libremail</h1>
	<br>
		<div class="well well-lg">
			<h2 id="what_are_we_doing">What are we doing?</h2>
			<p>We host youre E-Mail, like GMail or Yahoo mail. But without ads or selling your data.</p>
			<br>
			<h2 id="why_libremail">Why Libremail?</h2>
			<p>Because Libremail is young, free (without commercial aim) and open source. If you don't want it hosted, grab the source and run it on your own server.
			<br>
			Also we run a secure setup. Read <a href="#secure">here</a> more.</p>
			<br>
			<h2 id="by_whom">By whom?</h2>
			<p>Libremail is hosted on a dedicated server and managed by <a href="https://www.iamfabulous.de/" title="iamfabulous.de" target="_blank">Maximilian Möhring <span class="fa fa-external-link"></span></a>.
			</p>
			<br>
			<h2 id="secure">How secure is it?</h2>
			<p>Our IMAP login server enforces TLS 1.0, 1.1 or 1.2 with Perfect Forward Secrecy.
			<br>If you are interested, those SSL ciphers are allowed: <code>ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS</code>
			<br>Since enforcing strict security may prevent a client from connecting we have to allow incomming mails with the SSLv3 protocoll. On the other hand, SMTP is not vulnerable to POODLE either way.
			<br><strong>Please note:</strong> Since Libremail is hosted we can't provide end-to-end encryption, but we strongly suggest to use GPG.
			</p>
			<br>
			<h2 id="why">Why? How do you make money?</h2>
			<p>Because it's fun and useful. There is no plan to make money with Libremail.
			</p>
			<br>
			<h2 id="sign_up">How sign up?</h2>
			<p>Please look <a href="/howto#create_new" title="How to sign up">here</a>.
			</p>
		</div>
		</div>
	</div>
</div>
{{template "footer.html"}}