Disable subject mime folding

This commit is contained in:
M66B 2019-08-13 17:11:16 +02:00
parent 5f44506696
commit 5d5a78c719
1 changed files with 2 additions and 0 deletions

View File

@ -694,6 +694,7 @@ public class MessageHelper {
parts.add(new MimeTextPart(text.substring(i)));
// Fold words to not break encoding
/*
int p = 0;
while (p + 1 < parts.size()) {
MimeTextPart p1 = parts.get(p);
@ -705,6 +706,7 @@ public class MessageHelper {
} else
p++;
}
*/
StringBuilder sb = new StringBuilder();
for (MimeTextPart part : parts)