diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-18 17:28:35 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2018-09-18 17:28:35 -0700 |
commit | 26bfd1c59cf2dfa36fc02b87831449a8259c780e (patch) | |
tree | 672a7cb5a94b9353820dd0e43e74c2f069cf1f1b /app | |
parent | d1329efd815ea0be1d666b0c2b4664349a77e1a0 (diff) | |
download | rails-26bfd1c59cf2dfa36fc02b87831449a8259c780e.tar.gz rails-26bfd1c59cf2dfa36fc02b87831449a8259c780e.tar.bz2 rails-26bfd1c59cf2dfa36fc02b87831449a8259c780e.zip |
Only deliver pending emails to the mailroom
Makes it easier to test without triggering this behavior.
Diffstat (limited to 'app')
-rw-r--r-- | app/models/action_mailroom/inbound_email.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/action_mailroom/inbound_email.rb b/app/models/action_mailroom/inbound_email.rb index bb3b0daff7..92f80f26e3 100644 --- a/app/models/action_mailroom/inbound_email.rb +++ b/app/models/action_mailroom/inbound_email.rb @@ -7,7 +7,7 @@ class ActionMailroom::InboundEmail < ActiveRecord::Base enum status: %i[ pending processing delivered failed bounced ] - # after_create_commit :deliver_to_mailroom_later + after_create_commit :deliver_to_mailroom_later, if: ->(r) { r.pending? } def mail |