configure exim instead of sendmail
am 13.08.2007 18:41:31 von Nilesh IndiaI have a server in which sendmail gives problem. How do i change
php.ini so that i can use exim for mail()
System is FC-6.
I have a server in which sendmail gives problem. How do i change
php.ini so that i can use exim for mail()
System is FC-6.
Nilesh wrote:
> I have a server in which sendmail gives problem. How do i change
> php.ini so that i can use exim for mail()
>
> System is FC-6.
>
You shouldn't need to do anything. Just ensure your host and port are
set properly.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
On Mon, 13 Aug 2007 18:41:31 +0200, Nilesh
> I have a server in which sendmail gives problem. How do i change
> php.ini so that i can use exim for mail()
>
> System is FC-6.
Never used exim or FC-6, allthough this snippet might indicate you could
try to set the sendmail_path to a sendmail wrapper or replacement:
"sendmail_path string
....
Systems not using sendmail should set this directive to the sendmail
wrapper/replacement their mail system offers, if any. For example, » Qmail
users can normally set it to /var/qmail/bin/sendmail or
/var/qmail/bin/qmail-inject."
Google also seems to have some answers, haven't tried any of them, but
this was the first hit for
instance:
--
Rik Wasmus
Rik wrote:
> On Mon, 13 Aug 2007 18:41:31 +0200, Nilesh
>
>> I have a server in which sendmail gives problem. How do i change
>> php.ini so that i can use exim for mail()
>>
>> System is FC-6.
>
> Never used exim or FC-6, allthough this snippet might indicate you could
> try to set the sendmail_path to a sendmail wrapper or replacement:
>
>
> "sendmail_path string
> ...
> Systems not using sendmail should set this directive to the sendmail
> wrapper/replacement their mail system offers, if any. For example, »
> Qmail users can normally set it to /var/qmail/bin/sendmail or
> /var/qmail/bin/qmail-inject."
>
> Google also seems to have some answers, haven't tried any of them, but
> this was the first hit for
> instance:
>
> --Rik Wasmus
Correct - my mistake. But Exim contains a sendmail executable,
completely compatible with sendmail.
One other thought - if you're having problems with sendmail, chances are
you'll have the same problems with Exim.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
i upgraded to FC-7. So for now sendmail is working. Thanks for solns.