die Jungs von spamhaus.com haben in der Dokumentation https://docs.spamhaus.com/datasets/docs ... stfix.html folgendes hinterlegt:
Mir ist das bei einem anderen Blog schonmal untergekommen, dass die Einträge da, für mich widersprüchlich, positioniert sind.To correctly configure Postfix, make changes to the main.cf file. This is usually located under /etc/postfix. Open the file and locate the section smtpd_recipient_restrictions. Configure it as follows:
smtpd_recipient_restrictions =
...
reject_rbl_client your_DQS_key.zen.dq.spamhaus.net=127.0.0.[2..11]
reject_rhsbl_sender your_DQS_key.dbl.dq.spamhaus.net=127.0.1.[2..99]
reject_rhsbl_helo your_DQS_key.dbl.dq.spamhaus.net=127.0.1.[2..99]
reject_rhsbl_reverse_client your_DQS_key.dbl.dq.spamhaus.net=127.0.1.[2..99]
reject_rhsbl_sender your_DQS_key.zrd.dq.spamhaus.net=127.0.2.[2..24]
reject_rhsbl_helo your_DQS_key.zrd.dq.spamhaus.net=127.0.2.[2..24]
reject_rhsbl_reverse_client your_DQS_key.zrd.dq.spamhaus.net=127.0.2.[2..24]
...
We recommend putting these lines at the top of the smtpd_recipient_restrictions section.
In der Postfix Dokumentation sind die client/sender/helo Abfragen nur in den dazu passenden Bereichen aufgeführt.
reject_rbl_client gehört doch in die smtpd_client_restrictions
reject_rhsbl_sender gehört in die smtpd_sender_restrictions
reject_rhsbl_helo gehört in die smtpd_helo_restrictions
usw.
Kann mich da jemand aufschlauen?
Sollte das ganze nicht so aufgebaut sein?
Code: Alles auswählen
smtpd_client_restrictions=
...
reject_rbl_client your_DQS_key.zen.dq.spamhaus.net=127.0.0.[2..11]
reject_rhsbl_reverse_client your_DQS_key.dbl.dq.spamhaus.net=127.0.1.[2..99]
reject_rhsbl_reverse_client your_DQS_key.zrd.dq.spamhaus.net=127.0.2.[2..24]
...
smtpd_helo_restrictions=
...
reject_rhsbl_helo your_DQS_key.dbl.dq.spamhaus.net=127.0.1.[2..99]
reject_rhsbl_helo your_DQS_key.zrd.dq.spamhaus.net=127.0.2.[2..24]
...
smtpd_sender_restrictions=
...
reject_rhsbl_sender your_DQS_key.zrd.dq.spamhaus.net=127.0.2.[2..24]
reject_rhsbl_sender your_DQS_key.dbl.dq.spamhaus.net=127.0.1.[2..99]
...