mail-api
mail-api copied to clipboard
Jakarta Mail Specification project
The finalize() in java.lang.Object has been deprecated in JDK 9. Various classes in JakartaMail implement a finalizer that should simply be removed. This ticket can only be completed once https://github.com/jakartaee/mail-api/issues/709...
**Describe the bug** I'm trying to find a subject line email in my Gmail inbox. Store store = imapConnectionPool.getStore(account); FetchProfile fp = new FetchProfile(); fp.add(FetchProfile.Item.ENVELOPE); fp.add(FetchProfile.Item.CONTENT_INFO); fp.add(FetchProfile.Item.FLAGS); Folder inbox =...
**Describe the bug** Latest jakarta.mail-api (`2.1.1`) includes 6 classes compiled to bytecode 53 and 148 classes to compiled to bytecode 52. All classes are found in the unversioned space which...
https://github.com/jakartaee/mail-api/issues/709 I set it as a draft for now, as we have to wait for branch 2.2.x and I will need to check also some documents.
Per [Jakarta EE Platform 10](https://jakarta.ee/specifications/platform/10/): >Minimum Java SE Version >Java SE 11 or higher This means that mail-api would no longer be building for JDK 8. Moving an Android API...
**Describe the bug** We are using the mail-api to parse incoming emails (MimeMessages), we received a particular email with a PDF attachment. The filename of this attachment is encoded in...
I've searched #330 , didn't resovled my question. Attachement filename is still ignored, because in my case the attachment file name is not described in the Content-Type but Content-Disposition. ```...
**Describe the bug** This is the envelope of a mail, please pay attention to the bold part >\* 364 FETCH (ENVELOPE ("Wed, 6 Apr 2022 17:10:18 +0800 (CST)" "=?utf-8?B?44CQQk9TU+ebtOiBmOOAkeW0lOS9s+aXreeahOeugOWOhg==?=" (("=?utf-8?B?Qk9TU+ebtOiBmA==?="...
**Describe the bug** While setPeek(true) works fine on an IMAPMessage when getting content data such as text parts or attachment parts, when trying to get the content of an inner...