It sounds like your server may have a strict time limit on running scripts. We could run a test with a simple test script, like the following, which will output data every 1 second for up to 2 minutes:
<?php// try to set the time limit to unlimitedini_set("max_execution_time","0");// loop for 2 minutes$stop_secs = 120;$start_time = date("U");$done = '';$old_elapsed = '';echo "time elapsed=";// loopwhile(!$done){ $elapsed = date("U")-$start_time; if($elapsed<>$old_elapsed){ echo " $elapsed.."; $old_elapsed = $elapsed; } flush(); if($elapsed==$stop_secs) $done = 1; }echo "time's up ($stop_secs secs), seems ok..<br>";?>
Copy and patse the code above into a PHP file, ie: "test.php". Then, upload it into your public_html folder and browse to it to activate.. If the script stops before the 2 minutes is up you likely have a server that will not allow scripts to run for as long as necessary for ListMail.