On Wed, Feb 11, 2009 at 08:05:56PM +0200, ddaas wrote: > Feb 3 14:45:57 softexp postfix/smtpd[23394]: NOQUEUE: reject: RCPT from > unknown[117.87.x.x]: 554 5.7.1 Service unavailable; Client host > [117.87.x.x] blocked using sbl-xbl.spamhaus.org; > [1]http://www.spamhaus.org/query/bl?ip=117.87.x.x; > from=[2]<x...@yahoo.com.au> to=[3]<experienceoff...@ourdomain.ro> > proto=ESMTP helo=<PC-200901111752> > > Feb 3 14:45:58 softexp postfix/smtp[23424]: 56966AC86D: > to=[4]<x...@yahoo.com.au>, relay=d.mx.mail.yahoo.com[66.196.82.7]:25, > delay=7.6, delays=0/0.01/7.6/0, dsn=4.7.0, status=undeliverable (host > d.mx.mail.yahoo.com[66.196.82.7] refused to talk to me: 421 4.7.0 [TS02] > Messages from 80.96.148.194 temporarily deferred due to user complaints - > 4.16.56.1; see [5]http://postmaster.yahoo.com/421-ts02.html)
You are doing Sender Address Verification (reject_unverified_sender) before doing RBL checks. Fix this. Do the RBL checks first, and consider not doing SAV at all, but if you do use it, do SAV *last*. smtpd_client_restrictions = ... no reject_unverified_sender ... smtpd_helo_restrictions = ... no reject_unverified_sender ... smtpd_sender_restrictions = ... no reject_unverified_sender ... smtpd_recipient_restrictions = permit_mynetworks, reject_unauth_destination, reject_rbl_client zen.spamhaus.org ... no reject_unverified_sender ... smtpd_data_restrictions = reject_unverified_sender -- Viktor. Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the "Reply-To" header. To unsubscribe from the postfix-users list, visit http://www.postfix.org/lists.html or click the link below: <mailto:majord...@postfix.org?body=unsubscribe%20postfix-users> If my response solves your problem, the best way to thank me is to not send an "it worked, thanks" follow-up. If you must respond, please put "It worked, thanks" in the "Subject" so I can delete these quickly.