Don't reject on unknown hostname...
This commit is contained in:
parent
4e565c00aa
commit
293553c9ed
|
@ -239,7 +239,6 @@ in {
|
||||||
"reject_sender_login_mismatch"
|
"reject_sender_login_mismatch"
|
||||||
"reject_non_fqdn_sender"
|
"reject_non_fqdn_sender"
|
||||||
"permit_sasl_authenticated"
|
"permit_sasl_authenticated"
|
||||||
"reject_unknown_sender_domain"
|
|
||||||
"permit_mynetworks"
|
"permit_mynetworks"
|
||||||
] ++ (map (blacklist: "reject_rbl_client ${blacklist}")
|
] ++ (map (blacklist: "reject_rbl_client ${blacklist}")
|
||||||
cfg.blacklist.dns) ++ [ "permit" ];
|
cfg.blacklist.dns) ++ [ "permit" ];
|
||||||
|
@ -275,14 +274,14 @@ in {
|
||||||
"permit_mynetworks"
|
"permit_mynetworks"
|
||||||
"reject_invalid_hostname"
|
"reject_invalid_hostname"
|
||||||
"reject_non_fqdn_helo_hostname"
|
"reject_non_fqdn_helo_hostname"
|
||||||
"reject_unknown_helo_hostname"
|
# "reject_unknown_helo_hostname"
|
||||||
] ++ (map (blacklist: "reject_rbl_client ${blacklist}")
|
] ++ (map (blacklist: "reject_rbl_client ${blacklist}")
|
||||||
cfg.blacklist.dns) ++ [ "permit" ];
|
cfg.blacklist.dns) ++ [ "permit" ];
|
||||||
|
|
||||||
outgoing-helo-restrictions = [
|
outgoing-helo-restrictions = [
|
||||||
"permit_mynetworks"
|
"permit_mynetworks"
|
||||||
"reject_invalid_hostname"
|
"reject_invalid_hostname"
|
||||||
"reject_unknown_helo_hostname"
|
# "reject_unknown_helo_hostname"
|
||||||
"permit"
|
"permit"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue