Forum OpenACS Q&A: Re: ns_sendmail

Collapse
6: Re: ns_sendmail (response to 1)
Posted by Jarkko Laine on
James,

Like you were told in a previous <a href="/forums/message-view?message_id=115843">thread</a> (and a couple of times in this thread), your problem most probably is, that your mail transfer agent is not running (or at least accepting connections). I don't think modifying ns_sendmail will help you here.

Collapse
7: Re: ns_sendmail (response to 6)
Posted by James Bennin on
I fixed the ns_sendmail proc, by replacing the smtp parameter with my mail server.  It is now working fine.  Thank you for your help.
Collapse
8: Re: ns_sendmail (response to 7)
Posted by Andrew Piskorski on
Ah, you "fixed" it? More like, you broke it. Note that the ns_sendmail code specifically does this:
set smtp [ns_config ns/parameters mailhost]
That gets the SMTP server from your AOLserver config file. If you have no such entry in your config file, ns_sendmail defaults to using localhost. So all you had to do was add the proper mailhost line into your config file.
Collapse
9: Re: ns_sendmail (response to 8)
Posted by James Bennin on
Hey buddy, I fixed and it works fine, ok.  I did not break anything.  The mail is able to go out to its proper recipients and I am not getting any sendmail error any more.  And by the way, setting smtp with my mailhost/server name is what I did to fix.  So thank you for your comments.