nel codice della pagina "send.php" c'è questo:
Codice PHP:
@set_time_limit(150);
if(!$mail->Send()){
$errstr = ($begin+$i+1)."\t".date("H:i:s")." \t".
$addr[$i]."\t".$mail->ErrorInfo."\r\n";
}else {
$errstr = ($begin+$i+1)."\t".date("H:i:s")." \t".
$addr[$i]."\t OK \r\n";
}
if(!$dontlog) fwrite($handler, $errstr, strlen($errstr));
}
$begin+=$limit;
if($begin<$sn){
header("location:send.php?step=send&error=$error&begin=$begin&list_id=$list_id&msg_id=$msg_id&sn=$sn");
} else {
$errstr = "------------------------------------------------------------\r\n";
$errstr.= "Finished at ".date("H:i:s")."\r\n";
$errstr.= "============================================================\r\n";
if(!$dontlog) fwrite($handler, $errstr, strlen($errstr));
if(!$dontlog) fclose($handler);
header("location:index.php?page=compose&op=done&error=$error&list_id=$list_id&errorlog=$dontlog");
}
break;
potrebbe essere il parametro da modificare ?