Add all the test emails

This commit is contained in:
Hocuri
2022-10-14 14:23:34 +02:00
parent c17eafa793
commit feee7aee3d
310 changed files with 2404 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Use with dkimchecks_strip.sh
import sys
inheader = False
for l in sys.stdin:
if inheader and (l.startswith(" ") or l.startswith("\t")):
print(l, end='')
continue
else:
inheader = False
if l.startswith("Authentication-Results:") or l.startswith("From:") or l.startswith("To:") or l.startswith("ARC-Authentication-Results"):
print(l, end='')
inheader=True