Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.3.0
-
None
Description
Here is a cumulative patch for
JAMES-377 - rfc2034 ENHANCEDSTATUSCODES
JAMES-375 - RFC 1854 - Command Pipelining support
JAMES-374 - EHLO reply when SIZE limit is enabled is wrong
JAMES-369 - Always announce AUTH capability to clients
It also fixes a bug in MAIL FROM and RCPT TO attributes tokenizer.
---------------------------
StringTokenizer optionTokenizer = new StringTokenizer(mailOptionString, " ");
while (optionTokenizer.hasMoreElements()) {
String mailOption = optionTokenizer.nextToken();
- int equalIndex = mailOptionString.indexOf('=');
+ int equalIndex = mailOption.indexOf('=');
------------------------------
It clearly seems a bug.
I think I have no rights to associate this issue to the 4 "childs".
I'm creating this issue to have a place to append a single patch.