neugi a écrit :
> Hi,
>
> permit_sasl_authenticated is already the first entry ;)
>
> right now i looks like this:
>
> smtpd_recipient_restrictions =
> permit_sasl_authenticated,
> permit_mynetworks,
> reject_rbl_client sbl.spamhaus.org <http://sbl.spamhaus.org>,
> reject_unauth_destination,
> reject_non_fqdn_recipient,
> reject_non_fqdn_sender,
> reject_unauth_pipelining,
> reject_unknown_recipient_domain,
> reject_unknown_sender_domain,
> check_policy_service inet:127.0.0.1:60000 <http://127.0.0.1:60000>
>
better order (and removal of useless checks):
smtpd_recipient_restrictions =
reject_non_fqdn_recipient,
reject_non_fqdn_sender,
permit_sasl_authenticated,
permit_mynetworks,
reject_unauth_destination,
reject_unknown_sender_domain,
reject_rbl_client sbl.spamhaus.org
check_policy_service inet:127.0.0.1:60000
PS1. when posting from gmail, hit the "text" button. those <http://...>
things are ugly.
PS2. do not top post. put your replies after the text you reply to.