configure exim instead of sendmail

configure exim instead of sendmail

am 13.08.2007 18:41:31 von Nilesh India

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.

Re: configure exim instead of sendmail

am 13.08.2007 18:48:13 von Jerry Stuckle

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
==================

Re: configure exim instead of sendmail

am 13.08.2007 18:49:36 von luiheidsgoeroe

On Mon, 13 Aug 2007 18:41:31 +0200, 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.

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

Re: configure exim instead of sendmail

am 13.08.2007 20:28:55 von Jerry Stuckle

Rik wrote:
> On Mon, 13 Aug 2007 18:41:31 +0200, 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.
>
> 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
==================

Re: configure exim instead of sendmail

am 18.08.2007 18:11:50 von Nilesh India

i upgraded to FC-7. So for now sendmail is working. Thanks for solns.