* Martijn de Munnik <mart...@youngguns.nl>:

> > I'd put them all into smtpd_recipient_restrictions #:)
> 
> I did some updates in my main.cf. I've attached the updated file. I kept
> the restrictions with the different smtpd_*_restrictions, I find it a
> little easier to understand.

Thus your initial question :)
(pardon my irony)

> smtpd_client_restrictions = reject_rbl_client virbl.dnsbl.bit.nl

> smtpd_helo_restrictions = permit_mynetworks,
> reject_invalid_helo_hostname, reject_non_fqdn_helo_hostname, permit

> smtpd_recipient_restrictions = permit_sasl_authenticated,
> permit_mynetworks, reject_non_fqdn_recipient,
> reject_unverified_recipient, reject_unauth_destination,
> check_policy_service inet:127.0.0.1:12525, check_policy_service
> inet:127.0.0.1:10023, permit

> smtpd_sender_restrictions = permit_mynetworks,        reject_non_fqdn_sender, 
> reject_unknown_sender_domain,   permit

Can be merged into:

smtpd_recipient_restrictions =
   permit_mynetworks,
   permit_sasl_authenticated,
   reject_non_fqdn_recipient,
   reject_non_fqdn_sender,
   reject_unknown_sender_domain,
   reject_unverified_recipient,
   reject_unauth_destination,
   reject_invalid_helo_hostname,
   reject_non_fqdn_helo_hostname,
   reject_rbl_client virbl.dnsbl.bit.nl
   check_policy_service inet:127.0.0.1:12525,
   check_policy_service inet:127.0.0.1:10023

-- 
Ralf Hildebrandt
  Geschäftsbereich IT | Abteilung Netzwerk
  Charité - Universitätsmedizin Berlin
  Campus Benjamin Franklin
  Hindenburgdamm 30 | D-12203 Berlin
  Tel. +49 30 450 570 155 | Fax: +49 30 450 570 962
  ralf.hildebra...@charite.de | http://www.charite.de
            

Reply via email to