• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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