up vote 2 down vote favorite
share [g+] share [fb]

I'm using exim on both the sending and relay hosts, the sending host seems to offer:

HELO foo_bar.example.com

Response:

501 Syntactically invalid HELO argument(s)
link|improve this question
feedback

4 Answers

up vote 2 down vote accepted

Possibly a problem with underscores in the hostname? http://www.exim.org/lurker/message/20041124.113314.c44c83b2.en.html

link|improve this answer
On the smtp relay server run this and restart exim4 echo 'helo_allow_chars = _' > /etc/exim4/conf.d/main/04_exim4-helo_hack – Ranguard Sep 17 '08 at 20:37
feedback

Underscores aren't actually valid in internet host names, despite some people using them anyway. A sane DNS server should not allow you to have records for them.

Change your system's host name so it's valid, hopefully this will fix it.

link|improve this answer
feedback

The argument to HELO should be a hostname or an IP address. foo_bar.example.com is neither an IP address nor a hostname (underscores are illegal in hostnames), so the error message is correct and there is nothing to fix.

link|improve this answer
feedback

Using qmail I came across this problem. I realised this was because of a previously unfinished installation.

1) When sending email qmail announces itself to other SMTP servers with "HELO ..." and then it adds what is in the file at: /var/qmail/control/me

(sometimes the file is located at /var/qmail/control/helohost)

2) This file should have a hostname with a valid DNS entry in.

Mine did not it had (none) which is why mails were failing to be sent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.