t1m0
t1m0

Reputation: 735

smtp errors from dotcloud mail

I am trying to send mail through the dotcloud mailer service, via django. I am getting this error from my smtp host:

Helo command rejected: need fully-qualified hostname (in reply to RCPT TO command

I believe this is because hostname on my server is not fully qualified. Is this something that can be changed or do I need to change smtp hosts?

I am on a sandbox server at the moment. Once I am running with a real domain, does that change the hostname setup at all on the dotcloud side?

Upvotes: 0

Views: 170

Answers (1)

Anshul
Anshul

Reputation: 1446

The helo command need to be followed by your domain name.

for example:

helo yahoo.com

Upvotes: 0

Related Questions