Merged updates from trunk into stable branch
[feedcatcher.git] / vendor / rails / actionmailer / lib / action_mailer / vendor / tmail.rb
1 # Prefer gems to the bundled libs.
2 require 'rubygems'
3
4 begin
5 gem 'tmail', '~> 1.2.3'
6 rescue Gem::LoadError
7 $:.unshift "#{File.dirname(__FILE__)}/tmail-1.2.3"
8 end
9
10 module TMail
11 end
12
13 require 'tmail'
14
15 silence_warnings do
16 TMail::Encoder.const_set("MAX_LINE_LEN", 200)
17 end