mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-21 13:47:04 +00:00
Documented default boundary options
This commit is contained in:
parent
af97e9e0f4
commit
65be3bd878
1 changed files with 4 additions and 4 deletions
|
@ -95,10 +95,10 @@ public class MessageHelper {
|
|||
System.setProperty("mail.mime.cachemultipart", "false");
|
||||
|
||||
// https://docs.oracle.com/javaee/6/api/javax/mail/internet/MimeMultipart.html
|
||||
System.setProperty("mail.mime.multipart.ignoremissingboundaryparameter", "true"); // javax.mail.internet.ParseException: In parameter list
|
||||
System.setProperty("mail.mime.multipart.ignoreexistingboundaryparameter", "true");
|
||||
System.setProperty("mail.mime.multipart.ignoremissingendboundary", "true");
|
||||
System.setProperty("mail.mime.multipart.allowempty", "true");
|
||||
System.setProperty("mail.mime.multipart.ignoremissingboundaryparameter", "true"); // default true, javax.mail.internet.ParseException: In parameter list
|
||||
System.setProperty("mail.mime.multipart.ignoreexistingboundaryparameter", "true"); // default false
|
||||
System.setProperty("mail.mime.multipart.ignoremissingendboundary", "true"); // default true
|
||||
System.setProperty("mail.mime.multipart.allowempty", "true"); // default false
|
||||
}
|
||||
|
||||
static Properties getSessionProperties() {
|
||||
|
|
Loading…
Reference in a new issue