Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

Email not working

Quote Reply
Email not working
I have everything up and working great. What an awesome script. The last problem I am having is that my email part is not working. This is what I have:# PATH of sendmail. # SMTP Server
$db_mail_path = '/usr/sbin/sendmail'; $db_smtp_server = '';

I know that the path to send mail is correct as I talked to my server. Should I still leave the second one in? Am I supposed to add a - t thing that I have seen on other scripts?

Thanks

Venice
Quote Reply
Re: Email not working In reply to
You need to rem out (comment out) the SMTP variable, like the following:

Code:
# $db_smtp_server = '';

Your SENDMAIL path is fine. You do not have to use -t or -t eoq.

Just rem out the $db_smtp_server variable.

Hope this helps.

Regards,


------------------
Eliot Lee
Anthro TECH,L.L.C
www.anthrotech.com
----------------------


Quote Reply
Re: Email not working In reply to
Thanks I will give that a try.

Venice