.well-known in Git importiert

This commit is contained in:
Peter 2023-09-20 14:28:44 +02:00
parent 4dd52b5f93
commit 5ac2e7a9c2
2 changed files with 39 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,4 +1,2 @@
.htaccess
.htpasswd
.well-known
w/**

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="usrspace.at">
<domain>usrspace.at</domain>
<displayName>usrspace.at</displayName>
<displayShortName>usrspace.at</displayShortName>
<incomingServer type="imap">
<hostname>mail.usrspace.at</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<incomingServer type="imap">
<hostname>mail.usrspace.at</hostname>
<port>143</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.usrspace.at</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
<addThisServer>true</addThisServer>
</outgoingServer>
<outgoingServer type="smtp">
<hostname>mail.usrspace.at</hostname>
<port>25</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
<addThisServer>true</addThisServer>
</outgoingServer>
</emailProvider>
</clientConfig>