mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
f7d2fc0524
Prevent infinite email loophole when the 'reply_by_email_address' site setting is the same as the 'notification_email'.
17 lines
371 B
Ruby
17 lines
371 B
Ruby
class ReplyByEmailAddressValidator
|
|
def initialize(opts={})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(val)
|
|
return true if val.blank?
|
|
|
|
!!(val =~ /@/i) &&
|
|
!!(val =~ /%{reply_key}/i) &&
|
|
val.gsub(/\+?%{reply_key}/i, "") != SiteSetting.notification_email
|
|
end
|
|
|
|
def error_message
|
|
I18n.t('site_settings.errors.invalid_reply_by_email_address')
|
|
end
|
|
end
|