2015-02-06 06:08:37 -05:00
|
|
|
class ReplyByEmailAddressValidator
|
2017-07-27 21:20:09 -04:00
|
|
|
def initialize(opts = {})
|
2015-02-06 06:08:37 -05:00
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(val)
|
2018-03-02 11:53:18 -05:00
|
|
|
return true if val.blank?
|
|
|
|
return false if val["@"].nil?
|
2015-02-06 06:08:37 -05:00
|
|
|
|
2018-03-02 11:53:18 -05:00
|
|
|
if SiteSetting.find_related_post_with_key
|
|
|
|
!!val["%{reply_key}"] && val.sub(/\+?%{reply_key}/, "") != SiteSetting.notification_email
|
|
|
|
else
|
|
|
|
val != SiteSetting.notification_email
|
|
|
|
end
|
2015-02-06 06:08:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
|
|
|
I18n.t('site_settings.errors.invalid_reply_by_email_address')
|
|
|
|
end
|
|
|
|
end
|