mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Disable subject mime folding
This commit is contained in:
parent
5f44506696
commit
5d5a78c719
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue