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