vmail 2.6.0 → 2.6.1

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.
@@ -61,8 +61,9 @@ module Vmail
61
61
  headers = format_headers headers_hash
62
62
  # replace the date value with the one derived from the envelope
63
63
  body = formatter.plaintext_part
64
- if /charset=(.*)\s/.match(parts_list)
65
- conv_from = /charset=(.*)\s/.match(parts_list)[1].strip
64
+ # [\w-]+ matches charsets like ISO-8851
65
+ if /charset=([\w-]+)/.match(parts_list)
66
+ conv_from = /charset=([\w-]+)/.match(parts_list)[1].strip
66
67
  body.force_encoding conv_from
67
68
  body = body.encode!('utf-8', undef: :replace, invalid: :replace)
68
69
  else
data/lib/vmail/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '2.6.0'
2
+ VERSION = '2.6.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vmail
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-11 00:00:00.000000000 Z
12
+ date: 2012-12-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mail