blob: 88a74b659b56016d50266d17da9e7fbb0b6f81d0 (
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
|
{{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>How to</h1>
<div class="well well-lg">
<h2 id="create_new">Create new adress</h2>
<p>To create a new mail adress follow and fill out <a href="/register" title="Sign up">this</a> link.
<br>
You can use <strong>email.iamfabulous.de</strong> or <strong>user.iamfabulous.de</strong> as a base domain, so e.g. 'post@email.iamfabulous.de' or 'tidyupmyroom@user.iamfabulous.de' are valid entries.
<br>
Try it out, if the mail is already taken it will prompt you with more details.
</p>
<br>
<h2 id="own_domain">Use other domains</h2>
<p>It is possible to use other domains as well. If you own one, we can do the mail hosting for you.
<br>
The requirements are a valid MX entry in your DNS. MX means 'mail exchange' and is a special resource record which points the responsible mail server. The correct entry is <strong>mx.iamfabulous.de</strong>.
</p>
<br>
<h2 id="login">Login</h2>
<p>The easiest way is to use our webmail interface. You can find it <a href="https://webmail.iamfabulous.de/" title="Webmail" target="_blank">here <span class="fa fa-external-link"></span></a>.
<br>
Log in with your full mail adress and your password.
<br>
<br>
If you want to use your own client, see <a href="/server" title="Server">here</a> for connection details.
</p>
</div>
</div>
</div>
</div>
{{template "footer.html"}}
|