Skip to content

Commit

Permalink
Merge branch '5.6.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
martinknafve committed May 2, 2016
1 parent f0b06ff commit 754d8c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hmailserver/test/RegressionTests/SMTP/MailFromParsing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void MailFromQuotedAddressWithSpaceAndWithParametersShouldSucceed()
[Test]
public void MailFromSingleQuoteShouldFail()
{
AssertInvalidMailFromCommand("MAIL FROM: \"", "550 The address is not valid.");
AssertInvalidMailFromCommand("MAIL FROM: \"", "550 Invalid syntax. Syntax should be MAIL FROM:<mailbox@domain>[crlf]");
}

[Test]
Expand Down
2 changes: 1 addition & 1 deletion hmailserver/test/RegressionTests/SMTP/RcptToParsing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void RcptToQuotedAddressWithoutSpaceShouldFail()
[Test]
public void RcptToSingleQuoteShouldFail()
{
AssertInvalidRcptToCommand("RCPT TO: \"", "550 A valid address is required.");
AssertInvalidRcptToCommand("RCPT TO: \"", "550 Invalid syntax. Syntax should be RCPT TO:<mailbox@domain>[crlf]");
}

[Test]
Expand Down

0 comments on commit 754d8c1

Please sign in to comment.