X-Git-Url: https://git.p6c8.net/form-email.git/blobdiff_plain/3683371d1a991dd4a607992a3a191d2f0bb417cb..98064eb295422aed6236826b18929dac7e13229e:/form-email/mailer.php diff --git a/form-email/mailer.php b/form-email/mailer.php index ba4d410..76fc648 100644 --- a/form-email/mailer.php +++ b/form-email/mailer.php @@ -354,12 +354,12 @@ for($x=0;$x 0) { $dp = opendir($store_mails_dir); - + while($stored_mail_file = readdir($dp)) { if($stored_mail_file != '.' && $stored_mail_file != '..' && substr($stored_mail_file,0,strlen($store_mails_prefix)) == $store_mails_prefix) { $stored_mail_files[$store_mails_dir.'/'.$stored_mail_file] = filemtime($store_mails_dir.'/'.$stored_mail_file); } } - + closedir($dp); - + arsort($stored_mail_files); - - #print sizeof($stored_mail_files); - - #print_r($stored_mail_files); - + $x = 0; - + foreach(array_keys($stored_mail_files) as $stored_mail_filename) { $x++; - + if($x > $store_mails_max) { unlink($stored_mail_filename); }