On Thu, May 16, 2002 at 05:57:57PM -0300, Federico Edelman wrote: > I think the qmail-smptd.c > > Where say: > > void err_rbl(arg) char **arg; { out("553 sorry, your mailserver is rejected > by "); out(arg); out("\r\n"); } > > Should by say: > void err_rbl(arg) char **arg; { out("553 sorry, your mailserver is rejected > by "); out(arg); out("\r\n"); logstring(3,"sorry, your mailserver is > rejected by"); logstring(3,arg); logflush(3); } > > Because if host is listed in RBL (case 1), call err_rbl(rblname) and > disconnect, but don't print nothing into logs. > First question what patch are you using? char **arg is definitifly wrong. Second if you set log to level 2 you will get lines like: RBL check with rbl.server.org: sender is rejected. This is done in rbl.c
-- :wq Claudio