forked from rails/rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure Action Mailbox processes an email only once when received mult…
…iple times This also adds a new column, message_checksum, to the action_mailbox_inbound_emails table for storing SHA1 digest of the email source. Additionally, it makes generating the missing message id deterministic and adds a unique index on message_checksum and message_id to detect duplicate emails.
- Loading branch information
Showing
6 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,27 @@ class InboundEmailTest < ActiveSupport::TestCase | |
test "source returns the contents of the raw email" do | ||
assert_equal file_fixture("welcome.eml").read, create_inbound_email_from_fixture("welcome.eml").source | ||
end | ||
|
||
test "email with message id is processed only once when received multiple times" do | ||
mail = Mail.from_source(file_fixture("welcome.eml").read) | ||
assert mail.message_id | ||
|
||
inbound_email_1 = create_inbound_email_from_source(mail.to_s) | ||
assert inbound_email_1 | ||
|
||
inbound_email_2 = create_inbound_email_from_source(mail.to_s) | ||
assert_nil inbound_email_2 | ||
end | ||
|
||
test "email with missing message id is processed only once when received multiple times" do | ||
mail = Mail.from_source("Date: Fri, 28 Sep 2018 11:08:55 -0700\r\nTo: [email protected]\r\nMime-Version: 1.0\r\nContent-Type: text/plain\r\nContent-Transfer-Encoding: 7bit\r\n\r\nHello!") | ||
assert_nil mail.message_id | ||
|
||
inbound_email_1 = create_inbound_email_from_source(mail.to_s) | ||
assert inbound_email_1 | ||
|
||
inbound_email_2 = create_inbound_email_from_source(mail.to_s) | ||
assert_nil inbound_email_2 | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters