- Server operating system version
- Ubuntu 22.04.5 LTS
- Plesk version and microupdate number
- Plesk Obsidian v18.0.71_build1800250729.09 os_Ubuntu 22.04
So after update to Plesk Obsidian 18.0.71 Update 2 Outlook is not connecting
proxy_error_log
/etc/nginx/conf.d/fixssl.conf has been changed by the update?
reverting back to
did not work.
web mail is working and the server can receive emails.
proxy_error_log
2025/08/01 20:31:15 [error] 107159#0: *15 connect() failed (111: Connection refused) while connecting to upstream, client: **client ip**, server: **domain.xx**, request: "GET /Autodiscover/Autodiscover.xml HTTP/2.0", upstream: "https://**external IP**:7081/Autodiscover ... scover.xml", host: "**domain.xx**"
/etc/nginx/conf.d/fixssl.conf has been changed by the update?
# Plesk fix for CVE-2025-23048 mitigation in Apache breaking proxying
proxy_ssl_server_name on;
proxy_ssl_name $host;
proxy_ssl_session_reuse off;
reverting back to
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
map $host $webmail_host {
~^webmail\..+ $host;
default webmail.$host;
}
map $request_uri $proxied_host {
~*^/autodiscover/autodiscover.xml $webmail_host;
~*^/(\.well-known/autoconfig/|)mail/config-v1.1.xml $webmail_host;
~*^/Microsoft-Server-ActiveSync $webmail_host;
~*^/iRony $webmail_host;
default $host;
}
proxy_ssl_name $proxied_host;
did not work.
web mail is working and the server can receive emails.