diff options
Diffstat (limited to 'views/about.html')
| -rw-r--r-- | views/about.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/views/about.html b/views/about.html new file mode 100644 index 0000000..b3d77e3 --- /dev/null +++ b/views/about.html @@ -0,0 +1,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">×</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="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"}} |
