Fix delay to wait between email for emailing refused float.

This commit is contained in:
Laurent Destailleur 2020-12-24 12:49:17 +01:00
parent 360a85cbbc
commit 739695c442
3 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ print '</td></tr>';
print '<tr class="oddeven"><td>'; print '<tr class="oddeven"><td>';
print $langs->trans("MailingDelay").'</td><td>'; print $langs->trans("MailingDelay").'</td><td>';
print '<input size="32" type="text" name="MAILING_DELAY" value="'.$conf->global->MAILING_DELAY.'">'; print '<input class="width75" type="text" name="MAILING_DELAY" value="'.$conf->global->MAILING_DELAY.'">';
print '</td></tr>'; print '</td></tr>';

View File

@ -346,7 +346,7 @@ if (empty($reshook))
if (!empty($conf->global->MAILING_DELAY)) if (!empty($conf->global->MAILING_DELAY))
{ {
dol_syslog("Wait a delay of MAILING_DELAY=".$conf->global->MAILING_DELAY); dol_syslog("Wait a delay of MAILING_DELAY=".$conf->global->MAILING_DELAY);
sleep($conf->global->MAILING_DELAY); usleep((float) $conf->global->MAILING_DELAY * 1000000);
} }
//test if CHECK READ change statut prospect contact //test if CHECK READ change statut prospect contact

View File

@ -318,7 +318,7 @@ if ($resql) {
} }
if (!empty($conf->global->MAILING_DELAY)) { if (!empty($conf->global->MAILING_DELAY)) {
sleep($conf->global->MAILING_DELAY); usleep((float) $conf->global->MAILING_DELAY * 1000000);
} }
} }
} else { } else {