@digiweb I think the safer method especially if the sender uses public servers is to do the blacklist in SA.
I did mention some of my experience within my previous response, now you say you really want to just allow it, I would say Proceed with caution!
There could be many spammers on the "same IP" so all that spam would be accepted, no exceptions.
In the past I have used this method:
If you're not familiar with postfix or some of the more advanced configurations, I would say get help.
On the server directly via shell, I create a file called clientaccess/cidr_allow (you can name it whatever you want).
One IP per line for each IP you want to whitelist.
the clientaccess file:
1.2.3.4 OK
2.3.4.5 OK
main.cf needs
smtpd_sender_restrictions =
check_client_access cidr:/etc/postfix/clientaccess
because you need the entry in main.cf, but PMG generates the file, you will need to modify the postfix template from PMG.
Again, be certain what you are doing, and then after you update that, I believe you have to restart PMG and it should generate the new main.cf and you can confirm the new value has been added.
Restart postfix and test.
I'm pretty sure I have these written these general steps correctly, but double checking is always advised.