ExtraDotInputStream MAY skip the first char of line which cause RetrCmdHandler 
to send incorrect data
-----------------------------------------------------------------------------------------------------

                 Key: JAMES-1152
                 URL: https://issues.apache.org/jira/browse/JAMES-1152
             Project: JAMES Server
          Issue Type: Bug
          Components: POP3Server
    Affects Versions: 3.0-M3
            Reporter: Norman Maurer
            Assignee: Norman Maurer
            Priority: Critical
             Fix For: 3.0-M3


ExtraDotInputStream does skip the first char of a line if the previous line is 
empty which cause RetrCmdHandler to send back incorrect data to the client


>From ML:
This is causing the first character of email body to be consumed.
       session.writeStream(new ExtraDotInputStream(in));

If I quick and dirty replace with
       session.writeStream( in );

It then works OK.

To test I simply send a plain text email with body ABCD, and what I receive
is BCD.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to