aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/vendor/tmail.rb
blob: 60555605f6ab5aee7c3f589f0d23b6e3782ff105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Prefer gems to the bundled libs.
require 'rubygems'

begin
  gem 'tmail', '~> 1.2.3'
rescue Gem::LoadError
  $:.unshift "#{File.dirname(__FILE__)}/tmail-1.2.3"
end

module TMail
end

require 'tmail'

require 'active_support/core_ext/kernel/reporting'
silence_warnings do
  TMail::Encoder.const_set("MAX_LINE_LEN", 200)
end