iRedMail
iRedMail copied to clipboard
Autoconfiguration for email clients
Always after iredmail installing I do the "autoconfiguration" for email clients. Is there a purpose why this is not configured by default as a vhost.main_email_domain.pl?
This is very simple and useful and work's like a charm. https://wiki.mozilla.org/Thunderbird:Autoconfiguration
Would you like to try automx2? https://rseichter.github.io/automx2/
I will be bad tester because for us autoconfig in xml is all we need :)
All of us need needs to automatic create of vhost (autoconfig.domain.pl) and file in it (/mail/config-v1.1.xml).
and puting there a example file with:
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="domain.pl">
<domain>domain.pl</domain>
<displayName>Poczta DOMAIN</displayName>
<displayShortName>DOMAIN</displayShortName>
<incomingServer type="imap">
<hostname>poczta.domain.pl</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>poczta.domain.pl</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
<outgoingServer type="smtp">
<hostname>poczta.domain.pl</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>password-cleartext</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
<documentation url="https://poczta.domain.pl/support.html">
<descr lang="en">Support Page</descr>
</documentation>
</emailProvider>
</clientConfig>
This is KISS (keep it simple stupid) & enough :)
There is also: https://github.com/Monogramm/autodiscover-email-settings
Would you like to try automx2? https://rseichter.github.io/automx2/
Tried that and it's also OK
How is auto config works in iredmail? (You closed this issue as completed)
I found a manual: https://docs.iredmail.org/iredmail-easy.autoconfig.autodiscover.html
And on clean install of newest iredadmin:
$ curl -k https://autoconfig.interduo.pl/.well-known/autoconfig/mail/[email protected]
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
@iredmail how to enable autoconfig feature (no info in manual, no info in installer)?