[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Sendmail question
- Subject: Re: [cobalt-users] Sendmail question
- From: Keith Davis <cache@xxxxxxxxxx>
- Date: Wed Apr 4 06:05:19 2001
- Organization: Digital Odyssey Web Development
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
>Don Rice wrote:
>
> I have recently got a Raq4 and it is not accepting mail through a browser
> using both perl or php. This is happening for all domains on the box.
> With a cgi it goes through its process and returns the "thank you" redirect
> page and all seems well but no mailing happens.
>
> The same cgi works properly on another server.
Since your program wrx on other servers my guess is you are doing the
same thing I did the first time I tried sendmail on my RaQ4 - paste my
usual routine into the cgi script. Be sure that $mailprog points to the
Raq's unusual location for sendmail -
$mailprog = "/usr/sbin/sendmail";
If you have used a different path, and if you are not using an || die on
the open| you are probably not contacting sendmail and just not knowing
it because of Perl's no-fault nature.
keith