Noel Jones: > May 13 16:12:13 mgate3 postfix/postscreen[9711]: PREGREET 42 after > 0.72 from [186.83.226.229]:1480: HELO > Dynamic-IP-18683226229.cable.net.co\r\n > May 13 16:12:13 mgate3 postfix/postscreen[9711]: panic: > psc_dnsbl_retrieve: no blocklist score for 186.83.226.229
Thanks for finding this. Easy fix: prepend this: if (state->dnsbl_score == NO_DNSBL_SCORE) before: (void) psc_dnsbl_retrieve(state->smtp_client_addr,... and: (void) psc_dnsbl_retrieve(state->smtp_client_addr,... That is, there are two places where the guard is needed. Wietse