Pipe Email Bounce

DanR

Verified User
Joined
Sep 1, 2019
Messages
18
Hey!

I have set up an email [email protected] that pipes to > "|/usr/local/bin/php -q /home/user/domains/domain.com/public_html/support/pipe.php"

All works great, the script is executed and data processed, however I get a bounce back with the following...

Code:
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  pipe to |/usr/local/bin/php -q /home/user/domains/domain.com/public_html/support/pipe.php
    generated by [email protected]

The following text was generated during the delivery attempt:

------ pipe to |/usr/local/bin/php -q /home/user/domains/domain.com/public_html/support/pipe.php
       generated by [email protected] ------

PHP Warning:  Module 'mailparse' already loaded in Unknown on line 0

Any idea what an earth is going on?
Dan
 
You likely have mailparse loaded twice in your PHP configuration :) Check all of the loaded ini files for mailparse.so. It should only be loaded once.
 
Back
Top