Am un server de e-mail bazat pe Linux (nu Microsoft Exchange) la mail.example.com
Găzduiesc e-mail pentru mai multe domenii pe acest server: exemplu1.com
, exemplu2.com
, exemplu3.com
, etc
Am un client de e-mail care rulează Outlook 2019.
Când utilizatorul adaugă un cont nou cu e-mailul său, de exemplu: [email protected]
apoi faceți clic pe „continuați” și apoi pe „IMAP/POP”, [câmpurile serverului de intrare și de ieșire sunt necompletate][1].
Lucruri pe care am încercat să le fac să funcționeze descoperirea automată, dar nu mă ajută:
Găzduit un fișier autodiscover.xml
la http://autodiscover.example1.com/autodiscover/autodiscover.xml
Găzduit un fișier autodiscover.xml la http://example1.com/autodiscover/autodiscover.xml
A urmat [instrucțiunile Thunderbird][2] și a găzduit un fișier config.xml la https://example1.com/mail/config-v1.1.xml
S-au adăugat următoarele înregistrări SRV pentru exemplu1.com
domeniu:
_imaps._tcp ÎN SRV 0 1 993 mail.example.com.
_submission._tcp IN SRV 0 1 587 mail.example.com.
fișierul meu autodiscover.xml:
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>IMAP</Type>
<Server>mail.example.com</Server>
<Port>993</Port>
<DomainRequired>off</DomainRequired>
<LoginName />
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>POP3</Type>
<Server>mail.example.com</Server>
<Port>995</Port>
<DomainRequired>off</DomainRequired>
<LoginName />
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>SMTP</Type>
<Server>mail.example.com</Server>
<Port>587</Port>
<DomainRequired>off</DomainRequired>
<LoginName />
<SPA>off</SPA>
<Encryption>SSL</Encryption>
<AuthRequired>on</AuthRequired>
<UsePOPAuth>off</UsePOPAuth>
<SMTPLast>off</SMTPLast>
</Protocol>
</Account>
</Response>
</Autodiscover>
fișierul meu config-v1.1.xml:
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="example.com">
<domain>example.com</domain>
<displayName>Numele companiei</displayName>
<displayShortName>Companie</displayShortName>
<incomingServer type="imap">
<hostname>mail.example.com</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>criptat prin parolă</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.example.com</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>criptat prin parolă</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
</emailProvider>
<emailProvider id="example1.com">
<domain>example1.com</domain>
<displayName>Compania 2</displayName>
<displayShortName>Companie</displayShortName>
<incomingServer type="imap">
<hostname>mail.example.com</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>criptat prin parolă</authentication>
<username>%EMAILADDRESS%</username>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.example.com</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>criptat prin parolă</authentication>
<username>%EMAILADDRESS%</username>
</outgoingServer>
</emailProvider>
</clientConfig>```
[1]: https://i.stack.imgur.com/HLROe.png
[2]: https://wiki.mozilla.org/Thunderbird:Autoconfiguration