|
Norman Maurer made changes - 04/Oct/06 10:42 AM
[
Permlink
| « Hide
]
Norman Maurer added a comment - 04/Oct/06 03:16 PM
Can you please tell us what for a repository you use ? file, jdbc,dbmail ?
Are you able to change code and try again?
I would like to know what is the result if you add this method to MimeMessageWrapper: ---- /** * @see javax.mail.internet.MimeMessage#getRawInputStream() */ public InputStream getRawInputStream() throws MessagingException { if (!messageParsed && !isModified() && source != null) { InputStream is; try { is = source.getInputStream(); // skip the headers. new MailHeaders(is); return is; } catch (IOException e) { throw new MessagingException("Unable to read the stream: " + e.getMessage(), e); } } else return super.getRawInputStream(); } ------
Norman Maurer made changes - 05/Oct/06 07:32 PM
Stefano Bagnara made changes - 08/Oct/06 05:13 PM
Closing issue fixed in released version.
Danny Angus made changes - 21/Nov/07 08:31 AM
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||