-
-
Save davidjairala/9dad25eab59ab6acb4eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'resolv' | |
| class Domain | |
| def mxers(domain) | |
| mxs = Resolv::DNS.open do |dns| | |
| ress = dns.getresources(domain, Resolv::DNS::Resource::IN::MX) | |
| ress.map { |r| [r.exchange.to_s, IPSocket::getaddress(r.exchange.to_s), r.preference] } | |
| end | |
| return mxs | |
| end | |
| end | |
| p Domain.new.mxers('yahoo.com') | |
| #=> [["mta7.am0.yahoodns.net", "66.94.237.139", 1], ["mta5.am0.yahoodns.net", "67.195.168.230", 1], ["mta6.am0.yahoodns.net", "98.139.54.60", 1]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment