mirror of https://github.com/M66B/FairEmail.git
Allow base64 for message/rfc822 attachments
This commit is contained in:
parent
0cd07139ec
commit
bded6459c8
|
@ -1463,6 +1463,8 @@ public class MimeBodyPart extends BodyPart implements MimePart {
|
|||
ContentType cType = new ContentType(type);
|
||||
if (cType.match("multipart/*"))
|
||||
return null;
|
||||
if (cType.match("message/rfc822") && encoding.equalsIgnoreCase("base64"))
|
||||
return encoding;
|
||||
if (cType.match("message/*") &&
|
||||
!PropUtil.getBooleanSystemProperty(
|
||||
"mail.mime.allowencodedmessages", false))
|
||||
|
|
Loading…
Reference in New Issue