Improved DKIM length error

This commit is contained in:
M66B
2025-01-21 11:26:43 +01:00
parent 0d9eff4f4d
commit 83b93286f2

View File

@@ -2639,7 +2639,7 @@ public class MessageHelper {
String length = kv.get("l");
if (!TextUtils.isEmpty(length))
throw new IllegalArgumentException("Length l=" + length);
throw new IllegalArgumentException("Length l=" + length + " body=" + body.length());
Log.i("DKIM body=" + body.replace("\r\n", "|"));