I gave a sample header in my original post. The sample header closely resembles the lines I would see in the Postfix logs, which I would say would look like this:
Mar 19 09:34:26 victim postfix/postscreen[2135]: CONNECT from [1.2.3.4]:57118 to [99.88.77.66]:25
Mar 19 09:34:26 victim postfix/postscreen[2135]: PASS OLD [1.2.3.4]:57118
Mar 19 09:34:26 victim postfix/smtpd[18586]: connect from mailserver1.example.com[1.2.3.4]
Mar 19 09:34:26 victim postfix/smtpd[18586]: Anonymous TLS connection established from mailserver1.example.com[1.2.3.4]: TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)
Mar 19 09:34:27 victim postfix/smtpd[18586]: 0E36DC582AF: client=mailserver1.example.com[1.2.3.4]
Mar 19 09:34:27 victim postfix/cleanup[30062]: 0E36DC582AF: message-id=<1584610455.9060.13.camel@wrathall>
Mar 19 09:34:27 victim postfix/qmgr[2020]: 0E36DC582AF: from=<spammer@spammer.com>, size=2260, nrcpt=1 (queue active)
Mar 19 09:34:27 victim postfix/10025/smtpd[26542]: 57B07C582B1: client=victim.mailserver.com[127.0.0.1]
Mar 19 09:34:27 victim postfix/cleanup[26265]: 57B07C582B1: message-id=<1584610455.9060.13.camel@wrathall>
Mar 19 09:34:27 victim postfix/qmgr[2020]: 57B07C582B1: from=<spammer@spammer.com>, size=2810, nrcpt=1 (queue active)
Mar 19 09:34:27 victim amavis[28546]: (28546-19) Passed CLEAN {RelayedInbound}, [1.2.3.4]:57118 [24.85.25.245] <spammer@spammer.com> -> <victim@victim.com>, Queue-ID: 0E36DC582AF, Message-ID: <1584610455.9060.13.camel@wrathall>, mail_id: W0hORtXVZTGW, Hits: -, size: 2260, queued_as: 57B07C582B1, dkim_sd=dkim:mailserver1.example.com, 126 ms
Mar 19 09:34:27 victim amavis[28546]: (28546-19) Passed CLEAN, <spammer@spammer.com> -> <victim@victim.com>, Hits: -, tag=-100, tag2=3.5, kill=3.5, queued_as: 57B07C582B1, L/Y/0/0
Mar 19 09:34:27 victim postfix/amavis/smtp[29650]: 0E36DC582AF: to=<victim@victim.com>, relay=127.0.0.1[127.0.0.1]:10024, delay=0.34, delays=0.21/0/0/0.13, dsn=2.0.0, status=sent (250 2.0.0 from MTA(smtp:[127.0.0.1]:10025): 250 2.0.0 Ok: queued as 57B07C582B1)
Mar 19 09:34:27 victim postfix/qmgr[2020]: 0E36DC582AF: removed
Mar 19 09:34:27 victim postfix/smtpd[18586]: disconnect from mailserver1.example.com[1.2.3.4]
Mar 19 09:34:27 victim postfix/pipe[26103]: 57B07C582B1: to=<victim@victim.com>, relay=dovecot, delay=0.12, delays=0.01/0/0/0.11, dsn=2.0.0, status=sent (delivered via dovecot service)
Mar 19 09:34:27 victim postfix/qmgr[2020]: 57B07C582B1: removed
However, these are made up log lines based on sending an email from one server to another and then replacing email addresses and server names with examples:
* spammer@spammer.com: The spammer, of course.
* victim@victim.com: The target of the spam.
* mailserver1.example.com: The mail server that the spammer is using. This is what I want to block, but I also want to block *.example.com ... if it's possible to do so in this way.
* victim.mailserver.com: My iRedAdmin-Pro server.
* The IP addresses are all fake, of course.
Hope that makes it clearer.