Reputation: 16194
I don't understand this "reverse dns" thing at all.
So, I have a website - www.someurl.com, and I have an ip address - http://180.160.160.190 (fake). Now, I want to setup a "reverse dns" thing, so that emails that I send out won't be marked as spam.
Questions!
cheers, andrew
Upvotes: 3
Views: 1221
Reputation: 13462
It's an artificial requirement that was adopted under the assumption that spam servers wouldn't take the time to setup their rDNS (or wouldn't be able since they usually got setup in rogue environments like infected PC's), and legitimate servers would. There is no technical requirement to have a rDNS for the email protocol to work, and not every mail server does this check.
The hostname is the name of your machine within your internal network.
URL stands for uniform resource locator, it's the fancy name for stuff that looks like "http://www.google.com/page1/page2". a domain name is simply the base of the URL, for example google.com. It's always of the form domain.tld (domain name and top level domain like com, net, org)
Yes you can set it to anything you want. Mail protocol doesn't require you to hardcode the name to anything in particular. Ultimately, it's your domain's MX record that decides where the mail server handling its emails is located at, and you can point it to anything.
Not necessarily. Mail servers can send e-mails on behalf of several domains, a mail server isn't limited to sending emails from its hostname only. The "From" part of the e-mail header will tell the mail client where it's coming from.
Hope that helps clear up a few details.
Upvotes: 5
Reputation: 1751
Its to make sure that the email is coming from a verified source. Emails sent to anyone can display ANY email address on it, making it easy to spam and pish people. Thats why they use reverse DNS, to verify that the domain sending the email is yours.
Upvotes: -1