DKIM: log times

master
M66B 2 months ago
parent 3bc58bad48
commit ddd0871146

@ -2403,6 +2403,14 @@ public class MessageHelper {
if (!TextUtils.isEmpty(note))
Log.i("DKIM note=" + note);
// https://datatracker.ietf.org/doc/html/rfc6376#section-3.5
Integer t = Helper.parseInt(kv.get("t")); // Works until 2038
if (t != null)
Log.i("DKIM timestamp=" + new Date(t * 1000L));
Integer x = Helper.parseInt(kv.get("x"));
if (x != null)
Log.i("DKIM expiry=" + new Date(x * 1000L));
String canonic = kv.get("c");
Log.i("DKIM canonicalization=" + canonic);
if (canonic == null)

Loading…
Cancel
Save