> javax.mail.internet.ParseException: Out of data at position 5
> at ...MailAddress.<init>(MailAddress.java:177)
> at ...JDBCMailRepository.retrieve(JDBCMailRepository.java:709)
> at ...JamesSpoolManager.run(JamesSpoolManager.java:351)
I located the problem. The create statement shipped in sqlResources.xml is:
recipients text NOT NULL
A text field has a 64K limit, and your recipient list is being truncated.
Modify the table definition to use mediumtext or longtext for the recipients
field.
--- Noel
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]