This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/jobs/regular/process_email.rb

17 lines
326 B
Ruby

module Jobs
class ProcessEmail < Jobs::Base
sidekiq_options retry: 3
def execute(args)
Email::Processor.process!(args[:mail], false)
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