aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/models/action_mailbox/inbound_email/message_id.rb6
-rw-r--r--lib/action_mailbox/callbacks.rb2
2 files changed, 4 insertions, 4 deletions
diff --git a/app/models/action_mailbox/inbound_email/message_id.rb b/app/models/action_mailbox/inbound_email/message_id.rb
index f10f59ea45..244a2e439b 100644
--- a/app/models/action_mailbox/inbound_email/message_id.rb
+++ b/app/models/action_mailbox/inbound_email/message_id.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
-# 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
+# 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
@@ -13,7 +13,7 @@ module ActionMailbox::InboundEmail::MessageId
before_save :generate_missing_message_id
end
- module ClassMethods
+ class_methods do
# 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`.
diff --git a/lib/action_mailbox/callbacks.rb b/lib/action_mailbox/callbacks.rb
index c6f07d7ccf..2b7212284b 100644
--- a/lib/action_mailbox/callbacks.rb
+++ b/lib/action_mailbox/callbacks.rb
@@ -17,7 +17,7 @@ module ActionMailbox
define_callbacks :process, terminator: TERMINATOR, skip_after_callbacks_if_terminated: true
end
- module ClassMethods
+ class_methods do
def before_processing(*methods, &block)
set_callback(:process, :before, *methods, &block)
end