This is a discussion on Re: Postfix + rfc-ignorant.org within the mailing.postfix.users forums, part of the Mail Servers and Related category; Please turn off HTML in your mail client for this list. On Sun, Oct 17, 2004 at 09:41:26AM +...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Please turn off HTML in your mail client for this list.
On Sun, Oct 17, 2004 at 09:41:26AM +0200, Carinus Carelse wrote: > > I have just implemented the rfc-ignorant.org rejects. I have done this > in the main.cf file. I would like to find out if there is a way that > I can implement this so that I can exclude certain domains from being > checked. So if I happen to discover that there is a misconfigured > mailer that we need to recieve mail from I just was to add them to a > whitelist of some kind. here is the way I have it set up currently. > > smtpd_recipient_restrictions = > reject_rhsbl_sender dsn.rfc-ignorant.org > reject_rbl_client ipwhois.rfc-ignorant.org > reject_rhsbl_sender bogusmx.rfc-ignorant.org Where's your reject_unauth_destination? With that configuration your server should be rejecting all mail. At the very least this ought to be: smtpd_recipient_restrictions = permit_mynetworks, reject_unauth_destination, reject_rhsbl_sender dsn.rfc-ignorant.org, reject_rbl_client ipwhois.rfc-ignorant.org, reject_rhsbl_sender bogusmx.rfc-ignorant.org Show postconf -n output, don't retype little snippets from main.cf. |