$numperrun && $e < $total) { $next = '

'.PageLink2('checkbouncerules&s='.$e,sprintf($GLOBALS['I18N']->get('Process Next %d'),$numperrun)).'

'; } else { $next = ''; } $unmatched = 0; $matched = 0; $req = Sql_Query(sprintf('select * from %s where comment != "not processed" %s',$GLOBALS['tables']['bounce'],$limit)); while ($row = Sql_Fetch_Array($req)) { $action = matchBounceRules($row['data'],$bouncerules); if ($action) { # print $row['comment']. " Match: $action
"; $matched++; } else { $unmatched++; print $GLOBALS['I18N']->get('No match').': '.$row['id'].' '.PageLink2("bounce&id=".$row['id'],$row['comment']).'
'; } flush(); } print '
'.$unmatched.' '.$GLOBALS['I18N']->get('bounces did not match any current active rule'); print '
'.$matched.' '.$GLOBALS['I18N']->get('bounce matched current active rules'); print $next;