2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-08 16:28:27 -04:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class ProcessEmail < ::Jobs::Base
|
2016-08-08 16:28:27 -04:00
|
|
|
sidekiq_options retry: 3
|
|
|
|
|
|
|
|
def execute(args)
|
2021-01-19 22:22:41 -05:00
|
|
|
Email::Processor.process!(
|
|
|
|
args[:mail],
|
|
|
|
retry_on_rate_limit: args[:retry_on_rate_limit] || false,
|
|
|
|
source: args[:source]&.to_sym,
|
|
|
|
)
|
2016-08-08 16:28:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
sidekiq_retries_exhausted do |msg|
|
|
|
|
Rails.logger.warn(
|
|
|
|
"Incoming email could not be processed after 3 retries.\n\n#{msg["args"][:mail]}",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|