🇷🇺 Как работает функция автонастройки почтовых клиентов в Plesk Obsidian?

Вопрос

"В Plesk Obsidian 18.X доступна функция автонастройки почтовых клиентов - Users’ Microsoft Outlook and Thunderbird mail clients can now be automatically configured based on entered emails.
Можете подробнее про нее рассказать?
Как и где она настраивавется?
Какие дополнительные новшества со стороны клиентов ожидаются?"

Ответ:
"Вот как работает Mail settings auto-discovery:
1. Пользователь добавляет новый акаунт в Outlook/Thunderbird:

2. Почтовый клиент шлет autodiscover request по адресу домена.:
o Outlook шлет POST HTTP request (example) по адресу https://<domain>/autodiscover/autodiscover.xml
o Thunderbird шлет GET HTTP request по адресу https://<domain>/mail/config-v1.1.xml?emailaddress=<address> или https://<domain>/.well-known/autoconfig/mail/config-v1.1.xml?emailaddress=<address>
3. На стороне Plesk, каждый домен сконфигурирован таким образом что все запросы проксируются к Plesk URL http://127.0.0.1:8880/mailconfig/ при помощи /var/www/vhosts/system/<domain>/conf/nginx.conf и /var/www/vhosts/system/<domain>/conf/httpd.conf.
Note: Автоматическая конфигурация через поддомены  autoconfig.* и autodiscover.* так же доступна, их конфигурация хранится в глобальном server.conf.
4. Plesk генерирует ответ в XML, который содержит информацию о доступных протоколах и методах аутентификации например:

<clientConfig version="1.1">
    <emailProvider id="example.com">
        <domain>example.com</domain>
        <displayName>jsmith@example.com</displayName>
        <displayShortName>jsmith@example.com</displayShortName>
        <incomingServer type="imap">
            <hostname>example.com</hostname>
            <port>993</port>
            <socketType>SSL</socketType>
            <authentication>password-cleartext</authentication>
            <username>jsmith@example.com</username>
        </incomingServer>
        <outgoingServer type="smtp">
            <hostname>example.com</hostname>
            <port>465</port>
            <socketType>SSL</socketType>
            <authentication>password-cleartext</authentication>
            <username>jsmith@example.com</username>
        </outgoingServer>
        <incomingServer type="pop3">
            <hostname>example.com</hostname>
            <port>995</port>
            <socketType>SSL</socketType>
            <authentication>password-cleartext</authentication>
            <username>jsmith@example.com</username>
        </incomingServer>
    </emailProvider>
</clientConfig>

5. Почтовый клиент (Outlook / Thunderbird) конфигурирует почтовый аккаунт согласно предоставленной информации.
Автоматическая конфигурация может быть выключена в  panel.ini:

[mail]
autoconfig.enabled = 0

Note: После выключения autoconfig, необходимо перегенерировать серверную конфигурацию (plesk repair web -y).
Известные ограничения:
· Only Outlook and Thunderbird are currently supported. Apple Mail support will be added in future updates.
· Mail settings auto-discovery works only on Plesk for Linux. Support for Plesk for Windows is planned in the next update.
· Mail settings auto-discovery does not work on domains with no hosting or with forwarding hosting.
· Thunderbird mail client will not be automatically configured for wildcard subdomains.
О других новшествах в Plesk Obsidian вы можете прочитать тут:
https://docs.plesk.com/release-notes/obsidian/whats-new/"

Was this article helpful?
Additional questions? Submit a request