I'm a little confused about the setup of a PTR record for reverse dns lookup.
We are hosted at Rackspace and we have a front end webserver and behind that an appserver. Users don't access the Appserver directly, they go through the webserver.
Webserver: www.domain.com 190.1.2.3
Appserver: app.domain.com 170.2.3.4
The appserver sends out all the email with from address suck as no-reply@domain.com
So, how do I set up the PTR / reverse dns configuration? I was thinking that it should be as follows:
Reverse dns record on Appserver:
170.2.3.4 = app.domain.com
DNS
A *.domain.com 190.1.2.3
A app.domain.com 170.2.3.4
TXT app.domain.com "v=spf1 ip4:170.2.3.4 ~all"
TXT domain.com "v=spf1 ip4:170.2.3.4 ~all"
Would this be the correct way to set that up?