Has anyone had much experience with this? At the moment, I'm using this, as an email forwarder;
| /usr/bin/perl /home/ace-ins/public_html/dev2/pipe.pl
I've also tried;
| /home/ace-ins/public_html/dev2/pipe.pl
| perl /home/ace-ins/public_html/dev2/pipe.pl
I just keep getting this error;
pipe to |/usr/bin/perl/home/ace-ins/public_html/dev2/pipe.pl
generated by testpipe@ace-installer.com
Child process of virtual_address_pipe transport returned 69 (could mean service or program unavailable) from command:
/usr/bin/perl/home/ace-ins/public_html/dev2/pipe.pl
This is the code I'm currently using...it just seems to hang from SSH;
foreach (@email_in) { $data .= $_; }
$sendmail = "/usr/sbin/sendmail";
$email = "webmaster@ace-installer.com";
$subject = "Email grabbed...";
open(MAIL, "|$sendmail -t -i") || die &error;
print MAIL "To: $recipient \n";
print MAIL "From: $email \n";
print MAIL "Reply-to: $email \n";
print MAIL "Subject: $subject \n\n";
print MAIL "Data: $data\n";
print MAIL "$send\n";
print MAIL "\n";
close(MAIL);
Anyone got any ideas? As I say, this is the first time I have played with piping from an email, so I'm pretty clueless on it all
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
| /usr/bin/perl /home/ace-ins/public_html/dev2/pipe.pl
I've also tried;
| /home/ace-ins/public_html/dev2/pipe.pl
| perl /home/ace-ins/public_html/dev2/pipe.pl
I just keep getting this error;
pipe to |/usr/bin/perl/home/ace-ins/public_html/dev2/pipe.pl
generated by testpipe@ace-installer.com
Child process of virtual_address_pipe transport returned 69 (could mean service or program unavailable) from command:
/usr/bin/perl/home/ace-ins/public_html/dev2/pipe.pl
This is the code I'm currently using...it just seems to hang from SSH;
Code:
@email_in = <STDIN>; foreach (@email_in) { $data .= $_; }
$sendmail = "/usr/sbin/sendmail";
$email = "webmaster@ace-installer.com";
$subject = "Email grabbed...";
open(MAIL, "|$sendmail -t -i") || die &error;
print MAIL "To: $recipient \n";
print MAIL "From: $email \n";
print MAIL "Reply-to: $email \n";
print MAIL "Subject: $subject \n\n";
print MAIL "Data: $data\n";
print MAIL "$send\n";
print MAIL "\n";
close(MAIL);
Anyone got any ideas? As I say, this is the first time I have played with piping from an email, so I'm pretty clueless on it all
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

