Project

General

Profile

Actions

Patch #31035

closed

Remove redefinition of ActionMailer::LogSubscriber#deliver which is no longer necessary because of the removal of Setting.bcc_recipients

Added by Go MAEDA about 5 years ago. Updated over 2 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Code cleanup/refactoring
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:

Description

If the patch #30820 that drops "Blind carbon copy recipients (bcc)" setting is accepted, we can remove the workaround for #12090 that fixes the issue that email recipients are not logged when the setting is enabled, because emails will always be sent using To.

diff --git a/config/initializers/10-patches.rb b/config/initializers/10-patches.rb
index e0559903b..a42b91e4c 100644
--- a/config/initializers/10-patches.rb
+++ b/config/initializers/10-patches.rb
@@ -122,24 +122,6 @@ end

 ActionMailer::Base.add_delivery_method :tmp_file, DeliveryMethods::TmpFile

-# Changes how sent emails are logged
-# Rails doesn't log cc and bcc which is misleading when using bcc only (#12090)
-module ActionMailer
-  class LogSubscriber < ActiveSupport::LogSubscriber
-    def deliver(event)
-      recipients = [:to, :cc, :bcc].inject(+"") do |s, header|
-        r = Array.wrap(event.payload[header])
-        if r.any?
-          s << "\n  #{header}: #{r.join(', ')}" 
-        end
-        s
-      end
-      info("\nSent email \"#{event.payload[:subject]}\" (%1.fms)#{recipients}" % event.duration)
-      debug(event.payload[:mail])
-    end
-  end
-end
-
 module ActionController
   module MimeResponds
     class Collector

Related issues

Related to Redmine - Defect #12090: email recipients not written to action_mailer log if BCC recipients setting is checkedClosedJean-Philippe Lang

Actions
Blocked by Redmine - Feature #30820: Drop setting "Blind carbon copy recipients (bcc)"ClosedMarius BĂLTEANU

Actions
Actions #1

Updated by Go MAEDA about 5 years ago

  • Blocked by Feature #30820: Drop setting "Blind carbon copy recipients (bcc)" added
Actions #2

Updated by Marius BĂLTEANU over 2 years ago

  • Target version changed from Candidate for next major release to 5.0.0
Actions #3

Updated by Go MAEDA over 2 years ago

  • Subject changed from Remove the workaround for #12090 to Remove redefinition of ActionMailer::LogSubscriber#deliver which is no longer necessary because of the removal of Setting.bcc_recipients
  • Status changed from New to Closed
  • Assignee set to Go MAEDA

Committed the patch.

Actions #4

Updated by Go MAEDA over 2 years ago

  • Related to Defect #12090: email recipients not written to action_mailer log if BCC recipients setting is checked added
Actions

Also available in: Atom PDF