mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 07:06:18 +02:00
Added unicode account option
This commit is contained in:
@@ -2840,7 +2840,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
for (EntityAttachment attachment : attachments)
|
||||
if (attachment.available && "message/rfc822".equals(attachment.getMimeType()))
|
||||
try (FileInputStream fis = new FileInputStream(attachment.getFile(context))) {
|
||||
Properties props = MessageHelper.getSessionProperties();
|
||||
Properties props = MessageHelper.getSessionProperties(false);
|
||||
Session isession = Session.getInstance(props, null);
|
||||
MimeMessage imessage = new MimeMessage(isession, fis);
|
||||
MessageHelper helper = new MessageHelper(imessage, context);
|
||||
|
||||
Reference in New Issue
Block a user