Browse Source

Call address instead of exchange (#8076)

pull/4/head
abcang 5 years ago
committed by Eugen Rochko
parent
commit
9ad334f65c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/validators/email_mx_validator.rb

+ 1
- 1
app/validators/email_mx_validator.rb View File

@ -16,7 +16,7 @@ class EmailMxValidator < ActiveModel::Validator
return true if domain.nil?
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::MX).to_a.map { |e| e.exchange.to_s }
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::A).to_a.map { |e| e.exchange.to_s } if records.empty?
records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::A).to_a.map { |e| e.address.to_s } if records.empty?
records.empty? || on_blacklist?(records)
end

Loading…
Cancel
Save