From: Go MAEDA Date: Thu, 19 Aug 2021 13:53:07 +0000 (+0000) Subject: Remove redefinition of ActionMailer::LogSubscriber#deliver which is no longer necessa... X-Git-Tag: 5.0.0~255 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e50050dd8ccc213db0d6de6329765c530217b8b1;p=redmine.git Remove redefinition of ActionMailer::LogSubscriber#deliver which is no longer necessary because of the removal of Setting.bcc_recipients. (#31035). git-svn-id: http://svn.redmine.org/redmine/trunk@21197 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/config/initializers/10-patches.rb b/config/initializers/10-patches.rb index 643d06b7e..5788091b5 100644 --- a/config/initializers/10-patches.rb +++ b/config/initializers/10-patches.rb @@ -124,24 +124,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