Robert Burrell Donkin ha scritto:
> i'm inclined to move https://issues.apache.org/jira/browse/JAMES-875
> to trunk unless anyone plans to fix it soon
> 
> opinions?

JAMES-875 is probably the main bug reported against 2.3.1. I fixed it in
my 2.3 production deployments.

I simply added this to MimeMessageWrapper.java
--------------------------
/**
 * Overrides default javamail behaviour by not altering the Message-ID
by default.
 *
 * @see JAMES-875
 * @see javax.mail.internet.MimeMessage#updateMessageID()
 */
protected void updateMessageID() throws MessagingException {
 if (getMessageID() == null) super.updateMessageID();
}
--------------------------------

I've not committed it to v2.3 because of the comments from Danny to the
issue: I didn't understand if he thinks it is ok to fix this way or not.
IMO this is a good fix.

Stefano

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org
For additional commands, e-mail: server-dev-h...@james.apache.org

Reply via email to