Browse Source

In e-mail validator, fallback from MX to A record (#7955)

Fix #7831
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
32a4b524fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      app/validators/email_mx_validator.rb

+ 2
- 0
app/validators/email_mx_validator.rb View File

@ -16,6 +16,8 @@ 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.empty? || on_blacklist?(records)
end

Loading…
Cancel
Save