Gossamer Forum
Home : Products : DBMan : Customization :

forward record and windows sendmail/blat - errors

Quote Reply
forward record and windows sendmail/blat - errors
I am running Apache 1.3.26 on NT4 with Perl etc...

Everything else I have tried with sendmail using either blat.exe or a third party sendmail.exe works.

When I try using forward record I get an error about being unable to find the program.

This is the line in the instructions
$mailprog = "|/usr/lib/sendmail -t -oeq";

I have tried
$mailprog = "e:/apache/cgi-bin/sendmail.exe -t -oeq";
$mailprog = "e://apache//cgi-bin//sendmail.exe -t -oeq";
$mailprog = "e:\apache\cgi-bin\sendmail.exe -t -oeq";
$mailprog = "d:/winnt/system32/blat.exe -t -oeq";
$mailprog = "d://winnt//system32//blat.exe -t -oeq";
$mailprog = "d:\winnt\system32\blat.exe -t -oeq";

Has anyone else tried this and been successful?

I would really appreciate knowing what the correct path should be or even if it works with a dos/windows server/app.
Thanks
Paul

Last edited by:

csjjpm: May 8, 2003, 9:46 AM
Quote Reply
Re: [csjjpm] forward record and windows sendmail/blat - errors In reply to
I've got it to work!
I had removed the pipe | from within the quotes
I re-did it as "|e:/apache...... "
and it works

Wink