For the "mail autodiscover" in Plesk Obsidian, how can I change the values in this xml file generated automatically for every domain?
https://<domain>/mail/config-v1.1.xml?emailaddress=<email>
I need to change the wrong/default values for the ports 993-465-995 and authentication SSL....
... with the ports 143-587-110 and authentication STARTTLS:
How can I do it?
Now every time a user try to activate an email on the desktop/mobile client, it show from the autodiscover the above wrong/default values (993-465-995 and authentication SSL).
https://<domain>/mail/config-v1.1.xml?emailaddress=<email>
I need to change the wrong/default values for the ports 993-465-995 and authentication SSL....
XML:
<clientConfig version="1.1">
<emailProvider id="<domain>">
<domain><email></domain>
<displayName><email></displayName>
<displayShortName><email></displayShortName>
<incomingServer type="imap">
<hostname><domain></hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username><email></username>
</incomingServer>
<outgoingServer type="smtp">
<hostname><domain></hostname>
<port>465</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username><email></username>
</outgoingServer>
<incomingServer type="pop3">
<hostname><domain></hostname>
<port>995</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username><email></username>
</incomingServer>
</emailProvider>
</clientConfig>
... with the ports 143-587-110 and authentication STARTTLS:
XML:
<clientConfig version="1.1">
<emailProvider id="<domain>">
<domain><email></domain>
<displayName><email></displayName>
<displayShortName><email></displayShortName>
<incomingServer type="imap">
<hostname><domain></hostname>
<port>143</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username><email></username>
</incomingServer>
<outgoingServer type="smtp">
<hostname><domain></hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username><email></username>
</outgoingServer>
<incomingServer type="pop3">
<hostname><domain></hostname>
<port>110</port>
<socketType> STARTTLS </socketType>
<authentication>password-cleartext</authentication>
<username><email></username>
</incomingServer>
</emailProvider>
</clientConfig>
How can I do it?
Now every time a user try to activate an email on the desktop/mobile client, it show from the autodiscover the above wrong/default values (993-465-995 and authentication SSL).