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