W3cubDocs

/Ruby on Rails 6.0

class ActionMailbox::IncinerationJob

Parent:
ActiveJob::Base

You can configure when this IncinerationJob will be run as a time-after-processing using the config.action_mailbox.incinerate_after or ActionMailbox.incinerate_after setting.

Since this incineration is set for the future, it'll automatically ignore any InboundEmails that have already been deleted and discard itself if so.

You can disable incinerating processed emails by setting config.action_mailbox.incinerate or ActionMailbox.incinerate to false.

Public Class Methods

schedule(inbound_email) Show source
# File actionmailbox/app/jobs/action_mailbox/incineration_job.rb, line 17
def self.schedule(inbound_email)
  set(wait: ActionMailbox.incinerate_after).perform_later(inbound_email)
end

Public Instance Methods

perform(inbound_email) Show source
# File actionmailbox/app/jobs/action_mailbox/incineration_job.rb, line 21
def perform(inbound_email)
  inbound_email.incinerate
end

© 2004–2019 David Heinemeier Hansson
Licensed under the MIT License.