• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

atMail won't execute .php at webmail.<domain>

P

Peter Hase

Guest
[Bug & SOLVED] atMail won't execute .php at webmail.<domain>

Hello Forum,
after fiddling around I managed to switch on a webmail service that it appears to really be turned on (before that accessing webmail.<domain>.com always lead back tot homepage of that domain).

Now the problem is: The server doesn't execute the PHP, the .php file wants to be downloaded. I am running plesk 10.4.4 on ubuntu 10.40 lts with Apache2 and FastCGI. All other instances and subdomains where I use .php work fine.

Another issue is, that the mailman app seems to work, but the webinterface is never found. Accessing lists.<domain>.com/admin/mailman leads to a not found error. Is it my DNS or something wrong with the Plesk setup?

Cheers
 
Last edited by a moderator:
I solved it and would consider it a bug. All that was missing was the ifmodule directive for fastcgi:
<IfModule mod_fcgid.c>
<Files ~ (\.php)>
SetHandler fcgid-script
FCGIWrapper /var/www/cgi-bin/cgi_wrapper/cgi_wrapper .php
Options +ExecCGI
allow from all
</Files>
</IfModule>
I needed to add this to the atmail file in /opt/psa/admin/conf/generated - so it it will be lost after the next plesk mingling. I consider this as a bug. For now.
 
Back
Top