2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-11-25 11:12:49 -05:00
|
|
|
module Jobs
|
|
|
|
|
2019-10-02 00:01:53 -04:00
|
|
|
class CleanUpUnmatchedEmails < ::Jobs::Scheduled
|
2014-11-25 11:12:49 -05:00
|
|
|
every 1.day
|
|
|
|
|
2014-11-25 12:45:45 -05:00
|
|
|
def execute(args)
|
2014-11-25 11:12:49 -05:00
|
|
|
last_match_threshold = SiteSetting.max_age_unmatched_emails.days.ago
|
|
|
|
|
|
|
|
ScreenedEmail.where(action_type: ScreenedEmail.actions[:block])
|
|
|
|
.where("last_match_at < ?", last_match_threshold)
|
|
|
|
.destroy_all
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|