Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Sendmail Not Working

Quote Reply
Sendmail Not Working
I have all my scripts configured properly. When I try to send out a newsletter in Links 2.0, it says it has been sent but it really hasn't. I don't receive it in my email.

Before I contact my hosting company, does anyone have any suggestions on what I can do to solve this problem?

Thanks,
Chet
Quote Reply
Re: Sendmail Not Working In reply to
Do you have subscribers in email.db? Is your name/email address one of the subscribers? If your are not in the list of subscribers, you will not get email. If you set up a log file for the email in links.cfg, check the log to see who the mail was sent to.
Quote Reply
Re: Sendmail Not Working In reply to
My sendmail is:
/var/qmail/bin/qmail-inject
That is what I have in the links.cfg

But when I check my log it says:
/var/qmail/bin/qmail-inject -oeq -t

What is that "-oeq -t" at the end added in there for?
Quote Reply
Re: Sendmail Not Working In reply to
The Mailer.pm file only works with sendmail. What it does is looks to see if you've put the -t on the end, and if not, adds it on for you. To fix this, edit Mailer.pm:

110: $self->{'sendmail'} = $self->{'sendmail'} . " -oeq -t";

276: $self->{'sendmail'} = $self->{'sendmail'} . " -oeq -t";

comment out the above lines and it should work fine.

Cheers,

Alex
Quote Reply
Re: Sendmail Not Working In reply to
That did it!!!
Thanks alot Smile