-
Notifications
You must be signed in to change notification settings - Fork 937
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken spec for issue 453 and change documentation
- Loading branch information
Showing
4 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
== HEAD | ||
|
||
* Fix failing spec Issue 453 on Ruby 1.9.3 | ||
|
||
== Version 2.4.4 - Wed Mar 14 22:44:00 +1100 2012 Mikel Lindsaar <[email protected]> | ||
|
||
* Fix security vulnerability allowing command line exploit when using file delivery method | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -609,6 +609,12 @@ | |
b.should eq expected | ||
end | ||
|
||
it "should unquote Shift_JIS QP with trailing =" do | ||
a = "=?Shift_JIS?Q?=93=FA=96{=8C=EA=?=" | ||
b = Mail::Encodings.unquote_and_convert_to(a, 'utf-8') | ||
b.should eq "日本語" | ||
end | ||
|
||
it "should unquote multiple strings in the middle of the text" do | ||
a = "=?Shift_JIS?Q?=93=FA=96{=8C=EA=?= <[email protected]>, =?Shift_JIS?Q?=93=FA=96{=8C=EA=?= <[email protected]>" | ||
b = Mail::Encodings.unquote_and_convert_to(a, 'utf-8') | ||
|