Adi
My feedback
2 results found
-
27 votesAdi supported this idea ·
-
180 votes
This is a valid request, so we’ll look into it. There is no ETA at the moment, but we would really appreciate you voting for this request so that we can accurately assess its popularity relative to other features. Thanks in advance!
IB
An error occurred while saving the comment
Assuming the plesk admin is running a modern MTA i.e. Postfix, not some antiquated and heavily patched qmail fork, you do not need to run the script as the virtual mail user (popuser in Plesk's case). All you have to do is to enable forwarding for an email account to some mycustomfilter@localhost.localdomain email address. Then, in Postfix you'll have to create a custom transport and a filter for that transport and that's it. Example:
1. In /etc/postfix/mytransport enter:
mycustomfilter@localhost.localdomain mycustomfilter:
postmap /etc/postfix/mytransport
2. In main.cf enable this new transport:
transport_maps = hash:/var/spool/postfix/plesk/transport, hash:/etc/postfix/mytransport
3. In master.cf configure the new transport:
mycustomfilter unix - n n - - pipe flags=F user=somelocaluser argv=/var/www/vhosts/domain.com.au/bin/filter-script.php ${sender} ${size} ${recipient}
Restart Postfix, then in Plesk pick an account, enable forwarding and enter mycustomfilter@localhost.localdomain as address in the textbox.
Voila, it can be done, safe and secure!
It can also be implemented in Plesk by Parallels, where the following variables will have to be entered by the user somewhere in the interface:
${filtername} (mycustomfilter)
${scriptpath} (/var/www/vhosts/domain.com.au/bin/filter-script.php)