diff options
-rw-r--r-- | config/initializers/10-patches.rb | 18 |
1 files changed, 0 insertions, 18 deletions
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 |