vmail 2.7.7 → 2.7.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vmail.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +1 -1
data/lib/vmail.rb
CHANGED
@@ -127,7 +127,7 @@ module Vmail
|
|
127
127
|
private
|
128
128
|
|
129
129
|
def check_html_reader
|
130
|
-
|
130
|
+
return if ENV['VMAIL_HTML_PART_READER']
|
131
131
|
html_reader = %w( w3m elinks lynx ).detect {|x| `which #{x}` != ''}
|
132
132
|
if html_reader
|
133
133
|
cmd = ['w3m -dump -T text/html', 'lynx -stdin -dump', 'elinks -dump'].detect {|s| s.index(html_reader)}
|
data/lib/vmail/version.rb
CHANGED