blob: 88b0ebdab10bda4d40470cb44da26326a62840af (
plain) (
blame)
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
|
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-mail configuration</title>
<style type="text/css">
body {
padding-top: 1em;
padding-left: 5px;
padding-right: 5px;
text-align: left;
margin: auto;
font: 20px Helvetica, sans-serif;
color: #333;
height: 100%;
min-height: 100%;
}
article {
text-align: justify;
display: block;
max-width: 850px;
margin: 0 auto;
padding-top: 30px;
}
span.code {
font-family: monospace;
}
</style>
</head>
<body>
<p>
Email configuration. For automatic configuration in your smart e-mail
client, use <span class="code">login@mail.immae.eu</span>. If it
doesn’t work, the details are there:
<ul>
<li>IMAP: <span class="code">imap.immae.eu</span>
<ul>
<li>No unencrypted access</li>
<li>STARTTLS: 143</li>
<li>SSL: 993</li>
</ul>
</li>
<li>POP3: <span class="code">pop3.immae.eu</span>
<ul>
<li>No unencrypted access</li>
<li>STARTTLS: 110</li>
<li>SSL: 995</li>
</ul>
</li>
<li>SMTP: <span class="code">smtp.immae.eu</span>
<ul>
<li>No unencrypted access</li>
<li>STARTTLS: 587</li>
<li>SSL: 465</li>
</ul>
</li>
<li>Sieve: <span class="code">imap.immae.eu</span>
<ul>
<li>No unencrypted access</li>
<li>STARTTLS: 4190</li>
</ul>
</li>
</ul>
</p>
<p>Webmails:
<ul>
<li><a href="/roundcube">Roundcube</a></li>
<li><a href="/rainloop">Rainloop</a> (experimental)</li>
</ul>
</p>
</body>
</html>
|