Tagged Questions
3
votes
1answer
41 views
Email piping with php script to collect the TO field?
I want to forward my bounced emails to a php script to deal with them. I am using.
#!/usr/bin/php -q
<?php
// read from stdin
$fd = fopen("php://stdin", "r");
$email = "";
while ...
2
votes
1answer
379 views
PHP - Filtering Email Body, Removing Reply Quotes
I'm working on an email piping script that needs to save just the reply content and not the original quoted email. I'm using a mime parser class ...
1
vote
0answers
99 views
Email piping - local delivery failed
PROBLEM FIXED
We fixed this problem, by putting
Like so:
#!/usr/local/bin/php -q<?php
I'm setting up an email piping system on a cPanel server.
The code I'm using works on one server (also ...
1
vote
1answer
100 views
PHP script can not write to file with email piping
I have a simple script written to process received email. Here are the tested scenarios:
A. Script function is to send an email indicating an email was received at piped address.
-tested by browser ...
1
vote
1answer
99 views
Problem with piping emails to script
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. ...
0
votes
0answers
76 views
How can I use ISPConfig 3 to pipe e-mails of a specific address to an external script?
Our team is developing an application, where performance is most important. We want to handle bounced e-mails from PHP, so I created a script, which reads the e-mail including its headers from STDIN, ...
0
votes
1answer
72 views
Email piping in PHP like Craigslist - How do I associate real emails?
I have seen some examples of php scripts that read email headers and parse out data to send out a new email to the real email address.
One question I have is....how do I associate alias and real ...
0
votes
1answer
243 views
PHP Mail Piping
I don't know much about this and was just curious because i had an idea :)
I know with my cPanel hosting i can pipe an email inbox to a script, but what i want to do is:
send to hi@hi.com
pipes to ...
-1
votes
0answers
23 views
Email piping without cpanel?
I have hosting with GoDaddy and there's no cPanel. I need to pipe email to my script. I had it working on my other website (so easy with cPanel), but GoDaddy's control panel only let's you forward ...