rbl_overwrite Möglichkeit aus dem Keyhelp Panel

Welche Features fehlen Ihnen noch? Teilen Sie es uns mit.
User avatar
BasHeijermans
KeyHelp Translator
Posts: 158
Joined: Mon 20. Jun 2022, 12:01
Location: Heppen Belgium
Contact:

Re: rbl_overwrite Möglichkeit aus dem Keyhelp Panel

Post by BasHeijermans »

Yes it 'works' because you made a mistake.
hash:/etc/postfix/rbl_override,
permit
reject_rbl_client bl.spamcop.net,
reject_rbl_client bl.score.senderscore.com,
As behind permit is no ,
Your permit is a false line.
Also the last line does have a , making it an non ending line.

In short, your config is a mess and it's a wonder it works at all :lol:

it should be like this, and then it will not work:

Code: Select all

smtpd_recipient_restrictions = 
    permit_mynetworks, 
    permit_sasl_authenticated, 
    reject_unauth_destination, 
    reject_unauth_pipelining, 
    reject_non_fqdn_recipient, 
    check_policy_service unix:private/policy,
    hash:/etc/postfix/rbl_override,
    permit,
    reject_rbl_client bl.spamcop.net, 
    reject_rbl_client bl.score.senderscore.com
Correct is this:

Code: Select all

smtpd_recipient_restrictions = 
    permit_mynetworks, 
    permit_sasl_authenticated, 
    reject_unauth_destination, 
    reject_unauth_pipelining, 
    reject_non_fqdn_recipient, 
    check_policy_service unix:private/policy,
    hash:/etc/postfix/rbl_override,
    reject_rbl_client bl.spamcop.net, 
    reject_rbl_client bl.score.senderscore.com,
    permit
Permit must be last and without a comma, as all before will reject/permit.

The reason reject_rbl_client bl.spamcop.net, reject_rbl_client bl.score.senderscore.com will not work in a correct config is because the line before permits anything.
Greetings Bas.

Ik heb KeyHelp naar het Nederlands vertaald, contacteer me als er translatie fouten zijn.
(I have translated KeyHelp into Dutch, contact me if there are translation errors.)
Next version 24 of KeyHelp 100% translated.
User avatar
Tobi
Community Moderator
Posts: 2812
Joined: Thu 5. Jan 2017, 13:24

Re: rbl_overwrite Möglichkeit aus dem Keyhelp Panel

Post by Tobi »

Ein Bienchen für Bas.
🐝
Gruß,
Tobi


-----------------------------
wewoco.de
Das Forum für Reseller, Digital-Agenturen, Bildschirmarbeiter und Mäuseschubser
User avatar
Toorms
Posts: 137
Joined: Wed 18. Mar 2020, 20:11

Re: rbl_overwrite Möglichkeit aus dem Keyhelp Panel

Post by Toorms »

BasHeijermans wrote: Mon 29. Aug 2022, 16:33 Yes it 'works' because you made a mistake.
hash:/etc/postfix/rbl_override,
permit
reject_rbl_client bl.spamcop.net,
reject_rbl_client bl.score.senderscore.com,
As behind permit is no ,
Your permit is a false line.
Also the last line does have a , making it an non ending line.

In short, your config is a mess and it's a wonder it works at all :lol:

it should be like this, and then it will not work:

Code: Select all

smtpd_recipient_restrictions = 
    permit_mynetworks, 
    permit_sasl_authenticated, 
    reject_unauth_destination, 
    reject_unauth_pipelining, 
    reject_non_fqdn_recipient, 
    check_policy_service unix:private/policy,
    hash:/etc/postfix/rbl_override,
    permit,
    reject_rbl_client bl.spamcop.net, 
    reject_rbl_client bl.score.senderscore.com
Correct is this:

Code: Select all

smtpd_recipient_restrictions = 
    permit_mynetworks, 
    permit_sasl_authenticated, 
    reject_unauth_destination, 
    reject_unauth_pipelining, 
    reject_non_fqdn_recipient, 
    check_policy_service unix:private/policy,
    hash:/etc/postfix/rbl_override,
    reject_rbl_client bl.spamcop.net, 
    reject_rbl_client bl.score.senderscore.com,
    permit
Permit must be last and without a comma, as all before will reject/permit.

The reason reject_rbl_client bl.spamcop.net, reject_rbl_client bl.score.senderscore.com will not work in a correct config is because the line before permits anything.
Did you understand and read the whole post? :)
Post Reply