2018-12-14 05:06:12 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 19:34:05 -05:00
|
|
|
# The `Message-ID` as specified by rfc822 is supposed to be a unique identifier for that individual email.
|
|
|
|
# That makes it an ideal tracking token for debugging and forensics, just like `X-Request-Id` does for
|
|
|
|
# web request.
|
|
|
|
#
|
|
|
|
# If an inbound email does not, against the rfc822 mandate, specify a Message-ID, one will be generated
|
|
|
|
# using the approach from `Mail::MessageIdField`.
|
2018-09-28 15:19:43 -04:00
|
|
|
module ActionMailbox::InboundEmail::MessageId
|
2018-09-28 14:01:49 -04:00
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
before_save :generate_missing_message_id
|
|
|
|
end
|
|
|
|
|
|
|
|
module ClassMethods
|
2018-12-12 19:34:05 -05:00
|
|
|
# Create a new `InboundEmail` from the raw `source` of the email, which be uploaded as a Active Storage
|
|
|
|
# attachment called `raw_email`. Before the upload, extract the Message-ID from the `source` and set
|
|
|
|
# it as an attribute on the new `InboundEmail`.
|
2018-10-18 10:23:17 -04:00
|
|
|
def create_and_extract_message_id!(source, **options)
|
|
|
|
create! message_id: extract_message_id(source), **options do |inbound_email|
|
|
|
|
inbound_email.raw_email.attach io: StringIO.new(source), filename: "message.eml", content_type: "message/rfc822"
|
2018-10-06 22:02:08 -04:00
|
|
|
end
|
2018-09-28 14:01:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2018-10-18 10:23:17 -04:00
|
|
|
def extract_message_id(source)
|
2018-11-05 19:36:21 -05:00
|
|
|
Mail.from_source(source).message_id
|
2018-09-28 14:01:49 -04:00
|
|
|
rescue => e
|
|
|
|
# FIXME: Add logging with "Couldn't extract Message ID, so will generating a new random ID instead"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def generate_missing_message_id
|
|
|
|
self.message_id ||= Mail::MessageIdField.new.message_id
|
|
|
|
end
|
|
|
|
end
|