DSN decode MIME header text

This commit is contained in:
M66B
2019-04-26 10:14:21 +02:00
parent 336f0a2eee
commit 6fb0da5a8e

View File

@@ -65,7 +65,7 @@ public class ActivityDSN extends ActivityBase {
int length;
while ((length = is.read(buffer)) != -1)
bos.write(buffer, 0, length);
result.headers = bos.toString("UTF-8");
result.headers = MessageHelper.decodeMime(bos.toString("UTF-8"));
}
return result;