mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Added text/x-log extra
This commit is contained in:
parent
7289841648
commit
943ad9398f
1 changed files with 7 additions and 2 deletions
|
@ -3580,6 +3580,10 @@ public class MessageHelper {
|
|||
"text/x-patch".equalsIgnoreCase(contentType.getBaseType());
|
||||
}
|
||||
|
||||
boolean isLog() {
|
||||
return "text/x-log".equalsIgnoreCase(contentType.getBaseType());
|
||||
}
|
||||
|
||||
boolean isReport() {
|
||||
String ct = contentType.getBaseType();
|
||||
return (Report.isDeliveryStatus(ct) ||
|
||||
|
@ -4002,7 +4006,7 @@ public class MessageHelper {
|
|||
Log.e(ex);
|
||||
result = HtmlHelper.formatPlainText(result);
|
||||
}
|
||||
} else if (h.isPatch()) {
|
||||
} else if (h.isPatch() || h.isLog()) {
|
||||
result = "<hr>" +
|
||||
"<pre style=\"font-family: monospace; font-size:small;\">" +
|
||||
HtmlHelper.formatPlainText(result) +
|
||||
|
@ -5133,7 +5137,8 @@ public class MessageHelper {
|
|||
|
||||
if ("text/markdown".equalsIgnoreCase(ct) ||
|
||||
"text/x-diff".equalsIgnoreCase(ct) ||
|
||||
"text/x-patch".equalsIgnoreCase(ct))
|
||||
"text/x-patch".equalsIgnoreCase(ct) ||
|
||||
"text/x-log".equalsIgnoreCase(ct))
|
||||
parts.extra.add(new PartHolder(part, contentType));
|
||||
|
||||
if (Report.isDeliveryStatus(ct) ||
|
||||
|
|
Loading…
Reference in a new issue