-2

"Authentication-Results: mx.google.com; spf=neutral (google.com: 46.23.76.174 is neither permitted nor denied by best guess record for domain of vns6.wtech.in) smtp.mail=a@vns6.wtech.in".

This is the result when I get after seeing the mail sent from my mail server to gmail so I want to turn spf=neutral to spf=pass

Can anybody tell me how to do this?

Also I want to know in which zone file of dns I have to put my spf record entry?

gideon
  • 1,145
  • 2
  • 13
  • 28
achal tomar
  • 433
  • 3
  • 12

1 Answers1

2

In the DNS server which is primarily authoritative for wtech.in, which seems to be either ENOW.MERCURY.ORDERBOX-DNS.COM, ENOW.VENUS.ORDERBOX-DNS.COM, ENOW.EARTH.ORDERBOX-DNS.COM, or ENOW.MARS.ORDERBOX-DNS.COM, you need to put a TXT record that looks something like this:

vns6  IN    TXT "v=spf1 ip4:46.23.76.174 -all"

That will tell google (and everyone else) that the address 46.23.76.174 is explicitly permitted to send email from the domain vns6.wtech.in, and that noone else is. Be sure that's the result you want before you advertise such a record.

MadHatter
  • 79,770
  • 20
  • 184
  • 232