I have a script to capture emails that are piped to it, parse the parts and insert them into a database. The script works fine and I've tested it over and over forwarding my own email to it. However, when I forward the client's email to the same script, the emails bounce with the following error:
PHP Warning: PHP Startup: Unable to load dynamic library '/etc/ixed/ixed.4.4.lin' - /etc/ixed/ixed.4.4.lin: undefined symbol: empty_string in Unknown on line 0
I've done the following to try and correct other problems that were causing bounces, but this one seems to be at a lower level:
- added "-q" to the pipe command, such as "|/usr/bin/php -q /home/path/to/script"
- added error_reporting(0) to top of script
- Ensured there are no blank spaces outside of the <%%> tags to cause output.
If anyone has seen this before and found a solution, I'd be grateful.