diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-27 04:58:08 +0200 |
---|---|---|
committer | Yamagishi Kazutoshi <ykzts@desire.sh> | 2018-05-27 11:58:08 +0900 |
commit | 63c7b9157274f57c496399a1a5c728b32415034c (patch) | |
tree | aa83c2dfb3a201eb304757e18a3aafdf5d1a88d8 /app/models | |
parent | 182bdbc5f4f0194cdd7b771246304c2dfc6f19e0 (diff) |
Validate that e-mail resolves with MX and it's not blacklisted (#7631)
Original patch by @j-a4
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index cfbae58ed..0becfa7e9 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -65,6 +65,7 @@ class User < ApplicationRecord validates :locale, inclusion: I18n.available_locales.map(&:to_s), if: :locale? validates_with BlacklistedEmailValidator, if: :email_changed? + validates_with EmailMxValidator, if: :email_changed? scope :recent, -> { order(id: :desc) } scope :admins, -> { where(admin: true) } |