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
378 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
98 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. ...
1
vote
1answer
319 views
CPanel Email Piping to PHP
I have created a pipe script in CPanel and have placed the hashbang:#!/usr/bin/php -q at the beginning of my script. The script does run and places a log of the email into a table in my DB as it ...
0
votes
1answer
71 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
167 views
How To Make PHP Multi-Threading Flow Instead Of Waiting For Completion
I am using the following CURL Multithreading to add multi-threading to PHP processes:
function multithread_it($url,$threads){
$started=0;
while ($started<$threads){
$ch[$started] = ...
0
votes
1answer
242 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
22 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 ...