vmail 2.0.8 → 2.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vmail/showing_message.rb +3 -2
- data/lib/vmail/version.rb +1 -1
- metadata +1 -1
@@ -55,9 +55,10 @@ module Vmail
|
|
55
55
|
|
56
56
|
message = Message[message_id]
|
57
57
|
parts_list = format_parts_info(formatter.list_parts)
|
58
|
-
|
58
|
+
headers_hash = formatter.extract_headers
|
59
|
+
headers_hash['date']
|
60
|
+
headers = format_headers headers_hash
|
59
61
|
# replace the date value with the one derived from the envelope
|
60
|
-
headers['date'] = message.date
|
61
62
|
body = formatter.plaintext_part
|
62
63
|
body.force_encoding("UTF-8")
|
63
64
|
body = Iconv.conv('UTF-8//IGNORE', 'UTF-8', body)
|
data/lib/vmail/version.rb
CHANGED