aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2018-09-21 16:44:48 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2018-09-21 16:44:48 -0700
commit8eb239bd1a1350b151d57a639e589c68aed1f47a (patch)
tree64f98ff2a5690320d171b85be9bcbddb312adcad /lib
parent26f4e359bf7ffc4612b3170e1423aaedfee62ef8 (diff)
downloadrails-8eb239bd1a1350b151d57a639e589c68aed1f47a.tar.gz
rails-8eb239bd1a1350b151d57a639e589c68aed1f47a.tar.bz2
rails-8eb239bd1a1350b151d57a639e589c68aed1f47a.zip
Add simply bounce handling
Bouncing is not an exceptional state, so let's not use exceptions to deal with it.
Diffstat (limited to 'lib')
-rw-r--r--lib/action_mailroom/mailbox.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/action_mailroom/mailbox.rb b/lib/action_mailroom/mailbox.rb
index de02e56f13..936054810f 100644
--- a/lib/action_mailroom/mailbox.rb
+++ b/lib/action_mailroom/mailbox.rb
@@ -8,7 +8,7 @@ class ActionMailroom::Mailbox
include Callbacks, Routing
attr_reader :inbound_email
- delegate :mail, to: :inbound_email
+ delegate :mail, :bounced!, to: :inbound_email
def self.receive(inbound_email)
new(inbound_email).perform_processing
@@ -37,7 +37,7 @@ class ActionMailroom::Mailbox
def track_status_of_inbound_email
inbound_email.processing!
yield
- inbound_email.delivered!
+ inbound_email.delivered! unless inbound_email.bounced?
rescue => exception
inbound_email.failed!
raise