Is there a whois equivalent to find out the hosting details for email?
Asked
Active
Viewed 1.1e+01k times
5 Answers
10
The MX record is part of the DNS record for a domain name; you can look at the record directly, or just use a website like MX toolbox: http://www.mxtoolbox.com/SuperTool.aspx?action=mx%3agmail.com
This will direct you to the address of the mail server.
However, this isn't always the actual mail server - in some environments this is actually the address of the spam filter, which forwards the messages to the actual mail server where they are stored.
Mitch Miller
- 575
- 3
- 13
-
1+1. I was going to post the same answer until I read yours. As you said, the MX record is not always a direct indication of where the email is actually hosted. – joeqwerty Sep 04 '10 at 11:28
-
What about private registration? – Chris Sep 04 '10 at 11:55
-
2What do you mean? It's irrelevant whether or not the domain registration is private. If the owner of the domain wants to recieve email at the domain then he\she needs an MX record (or barring that, an A record for the domain) to tell sending MTA's where to send email for the domain. As Mitch stated in his answer, the MX record is not a direct indicator of where the email is actually hosted. – joeqwerty Sep 04 '10 at 12:30
5
look up the MX record in DNS.
on windows: at cmd prompt:
nslookup <enter>
set type=MX <enter>
hotmail.com <enter>
Nick Kavadias
- 10,758
- 7
- 36
- 47
-
-
haha.. why would you ever want to exit nslookup! good point though, i always mess that up with *quit* – Nick Kavadias Sep 04 '10 at 11:07
-
4
The host
command will show you.
$ host serverfault.com
serverfault.com has address 64.34.119.12
serverfault.com mail is handled by 50 aspmx3.googlemail.com.
serverfault.com mail is handled by 10 aspmx.l.google.com.
serverfault.com mail is handled by 20 alt1.aspmx.l.google.com.
serverfault.com mail is handled by 30 alt2.aspmx.l.google.com.
serverfault.com mail is handled by 40 aspmx2.googlemail.com.
0
Here's a quick command to check the MX records of a domain;
nslookup -q=mx email.startupschool.org
Jonathan
- 276
- 3
- 13