vmail 2.7.7 → 2.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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