Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

When I am sending emails on my server it returns an 415 error saying to try again later... it only happens with one account and I found that if I turn verify sender off on WHM it works...

Can someone point me a secure workaround for this?

share|improve this question

closed as not a real question by mailq, rnxrx, Ward, Michael Hampton, HopelessN00b Oct 8 '12 at 0:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Sometimes back I were having the same issue in WHM/Cpanel and it was missing the sending domain from /etc/localdomains. Try adding the domain you are sending email from to the /etc/localdomain configuration file and restart exim, from the command line or WHM/Cpanel Interface.

share|improve this answer

See how your exim is determining the validity of an email address:

1. Simple output
exim -bv user@domain.com

2. Little more verbose
exim -v -bv user@domain.com

3. Full debug output, showing file searches, database lookups, logic, etc.
exim -d -bv user@domain.com

Do this for a known good email address and then do it for the email which is not functioning for you. One of those three (likely #3) will show you exactly what is failing. I would not be surprised if it ended up being simply a missing entry in /etc/localdomains as mentioned in the previous reply.

share|improve this answer

Thanks for your answers, I found out that the email folders where with wrong permissions (I don't know why!?!?)

Problem solved!

share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post - you can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Ward Sep 19 '12 at 18:33

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