• 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.

Does Plesk 11 Support Email Piping?

Also to email pipe on a plesk server requires you to have SHELL access to the server. If you do then its quite easy, how just do the following:

Code:
vim /var/qmail/mailnames/yourdomain.com/emailaccount/.qmail

In that file, add the following line at end of the file,

Code:
| /usr/bin/php -q /var/www/vhosts/domain.com/httpdocs/php_pipe_script.php

That's it basically ...
 
Doesn't seem to work. I just keep getting

Oct 14 12:59:18 imageinabox qmail: 1381773558.947005 delivery 116: deferral: Status:_404_Not_Found_/Content-type:_text/html_/_/No_input_file_specified./

I trying to use php script to read the email.
Code:
#!/usr/bin/php -q

<?php

$message = file_get_contents( 'php://stdin' );
//nothing crazy.

?>
 
Back
Top