3

Have set up a small website for a client however contact form submissions are not getting through to their email address.

The bounce back has this message attached:

550 Requested action not taken: mailbox unavailable or not local

It sends without issue to my email address and others but can't get to any on their domain.

Client's IT guy is a bit clueless so I'm unsure how he's configured the mail server?

tshepang
  • 12,111
  • 21
  • 91
  • 136
timothyclifford
  • 6,799
  • 7
  • 57
  • 85
  • I should also point out that the website shares same domain as email address' however the web server and email server are hosted @ different locations. – timothyclifford Oct 04 '10 at 12:32

2 Answers2

4

You're probably sending the emails to an incorrect email address, or possible the emails are being sent to the http server for the domain (or similar) but the SMTP server is hosted elsewhere.

Hans Olsson
  • 54,199
  • 15
  • 94
  • 116
  • you're correct the SMTP servers are hosted elsewhere, how do I specify to send mail to these rather than the HTTP servers? – timothyclifford Oct 04 '10 at 12:33
  • @timothy: I'd assume that you just need to have the correct MX records set up in the correct locations but I don't do much DNS admin. I'd suggest asking that on serverfault.com. – Hans Olsson Oct 04 '10 at 12:38
2

Found the problem, was due to webserver having max entries which meant it was trying to send mail to itself rather than the external mail server.

Deleting DNS entries fixed the problem.

Himanshu
  • 31,810
  • 31
  • 111
  • 133
timothyclifford
  • 6,799
  • 7
  • 57
  • 85