mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
24 lines
582 B
Ruby
24 lines
582 B
Ruby
|
class ReplyByEmailEnabledValidator
|
||
|
|
||
|
def initialize(opts={})
|
||
|
@opts = opts
|
||
|
end
|
||
|
|
||
|
def valid_value?(val)
|
||
|
# only validate when enabling reply by email
|
||
|
return true if val == "f"
|
||
|
# ensure reply_by_email_address is configured && polling is working
|
||
|
SiteSetting.reply_by_email_address.present? &&
|
||
|
SiteSetting.pop3_polling_enabled?
|
||
|
end
|
||
|
|
||
|
def error_message
|
||
|
if SiteSetting.reply_by_email_address.blank?
|
||
|
I18n.t("site_settings.errors.reply_by_email_address_is_empty")
|
||
|
else
|
||
|
I18n.t("site_settings.errors.pop3_polling_disabled")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|