@@ -7,6 +7,8 @@ class SupportMailbox < ApplicationMailbox
                     :decorate_mail
 
   def process
+    Rails.logger.info "Processing email #{mail.message_id} from #{original_sender_email} to #{mail.to} with subject #{mail.subject}"
+
     # to turn off spam conversation creation
     return unless @account.active?
     # prevent loop from chatwoot notification emails
@@ -18,8 +20,6 @@ def process
     # we are checking for @ since the returned value could be "\"\"" for some email clients
     return unless original_sender_email.include?('@')
 
-    Rails.logger.info "Processing email from #{original_sender_email} to #{mail.to} with subject #{mail.subject}"
-
     ActiveRecord::Base.transaction do
       find_or_create_contact
       find_or_create_conversation