{
    global $report;
    if (VERBOSE) {
        output($GLOBALS['I18N']->get('(test)') . ' ' . $GLOBALS['I18N']->get('Would have sent') . ' ' . $messageid . $GLOBALS['I18N']->get('to') . ' ' . $email);
    } else {
        $report .= "\n" . $GLOBALS['I18N']->get('(test)') . ' ' . $GLOBALS['I18N']->get('Would have sent') . ' ' . $messageid . $GLOBALS['I18N']->get('to') . ' ' . $email;
    }
}
# we don not want to timeout or abort
$abort = ignore_user_abort(1);
set_time_limit(600);
flush();
output($GLOBALS['I18N']->get('Started'), 0);
# check for other processes running
if (!$send_process_id) {
    $send_process_id = getPageLock();
}
if ($ISPrestrictions != "") {
    output($ISPrestrictions);
}
if (is_file($ISPlockfile)) {
    ProcessError($GLOBALS['I18N']->get('Processing has been suspended by your ISP, please try again later'), 1);
}
if ($num_per_batch > 0) {
    if ($safemode) {
        output($GLOBALS['I18N']->get('In safe mode, batches are set to a maximum of 100'));
    }
    if ($original_num_per_batch != $num_per_batch) {
        output($GLOBALS['I18N']->get('Sending in batches of') . ' ' . $original_num_per_batch . ' ' . $GLOBALS['I18N']->get('emails'), 0);
        $diff = $original_num_per_batch - $num_per_batch;
        output($GLOBALS['I18N']->get('This batch will be') . ' ' . $num_per_batch . ' ' . $GLOBALS['I18N']->get('emails, because in the last') . ' ' . $batch_period . ' ' . $GLOBALS['I18N']->get('seconds') . ' ' . $diff . ' ' . $GLOBALS['I18N']->get('emails were sent'), 0);
Example #2
0
#############################################
# main
function main()
{
}
if (!function_exists('imap_open')) {
    Error($GLOBALS['I18N']->get('IMAP is not included in your PHP installation, cannot continue') . '<br/>' . $GLOBALS['I18N']->get('Check out') . ' <a href="http://www.php.net/manual/en/ref.imap.php">http://www.php.net/manual/en/ref.imap.php</a>');
    return;
}
//print '<script language="Javascript" src="js/progressbar.js" type="text/javascript"></script>';
flush();
$outputdone = 0;
# lets not do this unless we do some locking first
register_shutdown_function('processTestEmails_shutdown');
$abort = ignore_user_abort(1);
$process_id = getPageLock();
if (!empty($_REQUEST['email'])) {
    $mailToFind = $_REQUEST['email'];
    print prepareOutput();
    switch ($test_protocol) {
        case "pop":
            $link = openPop($test_mailbox_host, $test_mailbox_user, $test_mailbox_password);
            break;
        case "mbox":
            $link = openMbox($test_mailbox);
            break;
        default:
            Error($GLOBALS['I18N']->get("test_protocol not supported"));
            return;
    }
    if (isset($link)) {