• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.

Permission denied Calling a php script from an email alias

dfutura

Basic Pleskian
Hi,

I am triying to call a php script from an email alias to save all bounce emails. The problem is that when the alias call the script it print permission denied:

<bounce@domain.com>:
/bin/sh:
/var/www/vhosts/domain.com/httpsdocs/front/piping/index.php:
Permission denied


I have create the alias in /var/qmail/mailnames/domain.com/.qmail-bounce ->

|/var/www/vhosts/domain.com/httpsdocs/front/piping/index.php

The file /var/www/vhosts/domain.com/httpsdocs/front/piping/index.php have permission 755 and also i have tried to set permissions to 777

In this domain I have a SSL cretified, I think that could be the problem because I have tried It in another domain without SSL and It works.

Please help!!!

Thanks for anticipate...
 
usually, directory httpdocs (and httpsdocs) has permissions 750 which does not allow anyone except user who owns the domain and 'apache' (or any other member of 'psaserv' group) to enter it. All qmail delivery scripts are running by 'popuser' user. Make sure that 'popuser' user is able to read and execute the script, e.g.:

su - popuser -s /bin/sh -c "php /var/www/vhosts/domain.com/httpsdocs/front/piping/index.php"
 
Back
Top