summaryrefslogtreecommitdiff
path: root/lib/gitlab/email/hook/additional_headers_interceptor.rb
blob: aa2ef76069b3532d35defaf8c6891e719122ca6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module Email
    module Hook
      class AdditionalHeadersInterceptor
        def self.delivering_email(message)
          message.header['Auto-Submitted'] ||= 'auto-generated'
          message.header['X-Auto-Response-Suppress'] ||= 'All'
        end
      end
    end
  end
end