Create config-v1.1.xml

This commit is contained in:
Marek Miklewicz
2022-05-07 19:34:14 +02:00
committed by GitHub
parent 56437d2e5e
commit 83e9995543
+29
View File
@@ -0,0 +1,29 @@
<?xml version="1.0"?>
<clientConfig version="1.1">
<emailProvider id="nazwahosta">
<domain>%EMAILDOMAIN%</domain>
<displayName>%EMAILDOMAIN%</displayName>
<displayShortName>%EMAILDOMAIN%</displayShortName>
<incomingServer type="imap">
<hostname>nazwahosta</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<incomingServer type="pop3">
<hostname>nazwahosta</hostname>
<port>995</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>nazwahosta</hostname>
<port>465</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
</emailProvider>
</clientConfig>