Tôi có một máy chủ thư dựa trên linux (không phải Microsoft Exchange) tại mail.example.com
Tôi lưu trữ email cho nhiều miền tại máy chủ này: ví dụ1.com
, ví dụ2.com
, ví dụ3.com
, vân vân
Tôi có một ứng dụng thư đang chạy Outlook 2019.
Khi người dùng thêm tài khoản mới bằng email của họ, ví dụ: [email protected]
và sau đó nhấp vào "tiếp tục" rồi nhấp vào "IMAP/POP", [các trường máy chủ đến và đi trống] [1].
Những điều tôi đã cố gắng để tự động khám phá hoạt động, nhưng không giúp được gì:
Đã lưu trữ tệp autodetect.xml
tại http://autodetect.example1.com/autodetect/autodetect.xml
Đã lưu trữ tệp autodetect.xml tại http://example1.com/autodetect/autodetect.xml
Đã làm theo [Hướng dẫn của Thunderbird][2] và lưu trữ tệp config.xml tại https://example1.com/mail/config-v1.1.xml
Đã thêm các bản ghi SRV sau cho ví dụ1.com
miền:
_imaps._tcp IN SRV 0 1 993 mail.example.com.
_submission._tcp IN SRV 0 1 587 mail.example.com.
tệp autodetect.xml của tôi:
<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>
tệp config-v1.1.xml của tôi:
<?xml version="1.0" encoding="UTF-8"?>
<clientConfig version="1.1">
<emailProvider id="example.com">
<miền>example.com</miền>
<displayName>Tên công ty</displayName>
<displayShortName>Công ty</displayShortName>
<incomingServer type="imap">
<hostname>mail.example.com</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>được mã hóa bằng mật khẩu</authentication>
<tên người dùng>%EMAILADDRESS%</tên người dùng>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.example.com</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>được mã hóa bằng mật khẩu</authentication>
<tên người dùng>%EMAILADDRESS%</tên người dùng>
</outgoingServer>
</emailProvider>
<emailProvider id="example1.com">
<domain>example1.com</domain>
<displayName>Công ty 2</displayName>
<displayShortName>Công ty</displayShortName>
<incomingServer type="imap">
<hostname>mail.example.com</hostname>
<port>993</port>
<socketType>SSL</socketType>
<authentication>được mã hóa bằng mật khẩu</authentication>
<tên người dùng>%EMAILADDRESS%</tên người dùng>
</incomingServer>
<outgoingServer type="smtp">
<hostname>mail.example.com</hostname>
<port>587</port>
<socketType>STARTTLS</socketType>
<authentication>được mã hóa bằng mật khẩu</authentication>
<tên người dùng>%EMAILADDRESS%</tên người dùng>
</outgoingServer>
</emailProvider>
</clientConfig>```
[1]: https://i.stack.imgur.com/HLROe.png
[2]: https://wiki.mozilla.org/Thunderbird:Autoconfiguration