Jason Mehrens

Results 102 comments of Jason Mehrens

@jbescos Reviewing this is still on my todo list. I'll get you a proper review once I can give this a test drive.

Given the following test: `Properties props = new Properties(); Session s = Session.getInstance(props); //assertEquals(6, s.getProviders().length); for(Provider p : s.getProviders()) { System.out.println(p); }` The providers are double the expected count. It...

@jbescos CCE = [context class loader](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Thread.html#setContextClassLoader(java.lang.ClassLoader)). The default implementation ships with providers. If [no providers load they are pragmatically added.](https://github.com/eclipse-ee4j/mail/blob/2fe6c37d633e32f798705fb47875dca8987fbb28/mail/src/main/java/jakarta/mail/Session.java#L985). Where do we fail with NPE? We should fail with...

What version of JavaMail/JakartaMail are you using? Unique ids for boundaries haven't included the username since JavaMail 1.5.3: The UniqueValue source code shows that the user is removed from the...

Buffering is handled at the transport layers where there are [additional restrictions](https://github.com/eclipse-ee4j/mail/blob/394a55f8a97e7e64eccfd9718ea93ed65a5a9a13/mail/src/main/java/com/sun/mail/smtp/SMTPTransport.java#L1297) about if and when buffering can be used. I would assume that the benchmark results will vary based...

Blocked by: https://github.com/jakartaee/mail-api/issues/709

I think I'm missing additional context that should be placed in the description of this ticket. You provided the solution in the form of an implementation but I'm unable to...

Assuming I've found the correct product, it appears that Zimbra has an incomplete ticket from 2013 for upgrading to a newer version of JavaMail: https://bugzilla.zimbra.com/show_bug.cgi?id=84767 Unless there is a really...

@lukasj I think the summary if this issue is that: https://github.com/eclipse-ee4j/mail/blob/master/mail/src/main/java/jakarta/mail/internet/UniqueValue.java should consider replacing ``` (s.hashCode()).append('.'). append(id.getAndIncrement()).append('.'). append(System.currentTimeMillis() ``` with a call to: https://docs.oracle.com/javase/8/docs/api/java/util/UUID.html#randomUUID-- According to https://bugzilla.zimbra.com/show_bug.cgi?id=94875 other MTAs are...

Bill Shannon answered this on SO: https://stackoverflow.com/questions/29392185/unable-to-read-bcc-field-of-sent-mails-in-java