Exception while parsing email address with trailing @
-----------------------------------------------------

                 Key: MIME4J-207
                 URL: https://issues.apache.org/jira/browse/MIME4J-207
             Project: JAMES Mime4j
          Issue Type: Bug
          Components: dom
    Affects Versions: 0.7
            Reporter: Andrey Kolomoets
            Priority: Critical


Including this test into 
org.apache.james.mime4j.field.address.LenientAddressBuilderTest:
...
    public void testParseAddressTrailingAt() throws Exception {
        String s = "<@[email protected]>";
        ByteSequence raw = ContentUtil.encode(s);
        ParserCursor cursor = new ParserCursor(0, s.length());

        Mailbox mailbox = parser.parseMailboxAddress(null, raw, cursor);
        assertEquals("@[email protected]", mailbox.getAddress());
    }

leads to this exception:

java.lang.IndexOutOfBoundsException
        at 
org.apache.james.mime4j.util.ByteArrayBuffer.byteAt(ByteArrayBuffer.java:107)
        at 
org.apache.james.mime4j.field.address.LenientAddressBuilder.parseRoute(LenientAddressBuilder.java:103)
        at 
org.apache.james.mime4j.field.address.LenientAddressBuilder.parseMailboxAddress(LenientAddressBuilder.java:129)
        at 
org.apache.james.mime4j.field.address.LenientAddressBuilderTest.testParseAddressTrailingAt(LenientAddressBuilderTest.java:107)


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to