2015-02-06 06:08:37 -05:00
|
|
|
class ReplyByEmailAddressValidator
|
|
|
|
def initialize(opts={})
|
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(val)
|
|
|
|
return true if val.blank?
|
|
|
|
|
2016-06-10 10:14:42 -04:00
|
|
|
!!val["@"] &&
|
|
|
|
!!val["%{reply_key}"] &&
|
|
|
|
val.gsub(/\+?%{reply_key}/, "") != SiteSetting.notification_email
|
2015-02-06 06:08:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
|
|
|
I18n.t('site_settings.errors.invalid_reply_by_email_address')
|
|
|
|
end
|
|
|
|
end
|