aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2018-09-18 16:26:30 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2018-09-18 16:26:30 -0700
commit016ba4dbfa4946658c4ec6200bad73757f30be30 (patch)
tree0a2a763b771b80033167a1fb871d49047e7a3a48 /lib
parent0cb3245b4da59f9f77f5797d37214cb7844772fd (diff)
downloadrails-016ba4dbfa4946658c4ec6200bad73757f30be30.tar.gz
rails-016ba4dbfa4946658c4ec6200bad73757f30be30.tar.bz2
rails-016ba4dbfa4946658c4ec6200bad73757f30be30.zip
Process inbound emails with state and exceptions
Diffstat (limited to 'lib')
-rw-r--r--lib/action_mailroom/mailbox.rb16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/action_mailroom/mailbox.rb b/lib/action_mailroom/mailbox.rb
index e873b55544..7f16165221 100644
--- a/lib/action_mailroom/mailbox.rb
+++ b/lib/action_mailroom/mailbox.rb
@@ -1,7 +1,11 @@
+require "active_support/rescuable"
+
class ActionMailroom::Mailbox
+ include ActiveSupport::Rescuable
+
class << self
def receive(inbound_email)
- new(inbound_email).process
+ new(inbound_email).process_with_state_and_exception_handling
end
def routing(routes)
@@ -16,6 +20,16 @@ class ActionMailroom::Mailbox
@inbound_email = inbound_email
end
+ def process_with_state_and_exception_handling
+ inbound_email.processing!
+ process
+ inbound_email.delivered!
+ rescue => exception
+ inbound_email.failed!
+ rescue_with_handler(exception) || raise
+ end
+
def process
+ # Overwrite in subclasses
end
end