blob: ff1a0b15ff7f4e4a8448e6de804f77a97d84e8ae (
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
|
location = /.well-known/autoconfig/mail/config-v1.1.xml {
return 200 '<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="iamfabulous.de">
<domain>iamfabulous.de</domain>
<displayName>Libremail @ iamfabulous.de</displayName>
<displayShortName>Libremail</displayShortName>
<incomingServer type="imap">
<hostname>mx.iamfabulous.de</hostname>
<port>143</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<incomingServer type="pop3">
<hostname>mx.iamfabulous.de</hostname>
<port>110</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mx.iamfabulous.de</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
<documentation url="https://libremail.iamfabulous.de">
<descr lang="de">Libremail - Freier E-Mail Betrieb</descr>
<descr lang="en">Libremail - free email service</descr>
</documentation>
</emailProvider>
</clientConfig>';
}
|