diff --git a/scripts/cron_certificate_refresher.php b/scripts/cron_certificate_refresher.php index 84f951e7..865b0a3a 100644 --- a/scripts/cron_certificate_refresher.php +++ b/scripts/cron_certificate_refresher.php @@ -24,6 +24,7 @@ $config_enable_cron = intval($row['config_enable_cron']); // Check cron is enabled if ($config_enable_cron == 0) { + logApp("Cron-Certificate-Refresher", "error", "Cron Certificate Refresh unable to run - cron not enabled in admin settings."); exit("Cron: is not enabled -- Quitting.."); } @@ -62,6 +63,7 @@ while ($row = mysqli_fetch_array($sql_certificates)) { mysqli_query($mysqli,"UPDATE certificates SET certificate_issued_by = '$issued_by', certificate_expire = $expire, certificate_public_key = '$public_key' WHERE certificate_id = $certificate_id"); } else { + logApp("Cron-Certificate-Refresher", "error", "Cron Certificate Refresh - error updating Error updating $domain."); error_log("Certificate Cron Error - Error updating $domain"); } diff --git a/scripts/cron_domain_refresher.php b/scripts/cron_domain_refresher.php index f32e25fa..5132e0f0 100644 --- a/scripts/cron_domain_refresher.php +++ b/scripts/cron_domain_refresher.php @@ -23,6 +23,7 @@ $config_enable_cron = intval($row['config_enable_cron']); // Check cron is enabled if ($config_enable_cron == 0) { + logApp("Cron-Domain-Refresher", "error", "Cron Domain Refresh unable to run - cron not enabled in admin settings."); exit("Cron: is not enabled -- Quitting.."); } diff --git a/scripts/cron_mail_queue.php b/scripts/cron_mail_queue.php index 38464fed..f536a57a 100644 --- a/scripts/cron_mail_queue.php +++ b/scripts/cron_mail_queue.php @@ -27,7 +27,7 @@ $config_smtp_encryption = $row['config_smtp_encryption']; // Check cron is enabled if ($config_enable_cron == 0) { - error_log("Mail queue error - Cron is not enabled"); + logApp("Cron-Mail-Queue", "error", "Cron Mail Queue unable to run - cron not enabled in admin settings."); exit("Cron: is not enabled -- Quitting.."); } @@ -46,12 +46,12 @@ if (file_exists($lock_file_path)) { unlink($lock_file_path); // Logging - logAction("Cron-Mail-Queue", "Delete", "Cron Mail Queuer detected a lock file was present but was over 10 minutes old so it removed it."); - + logApp("Cron-Mail-Queue", "Delete", "Cron Mail Queue detected a lock file was present but was over 10 minutes old so it removed it."); + } else { // Logging - logAction("Cron-Mail-Queue", "Locked", "Cron Mail Queuer attempted to execute but was already executing so instead it terminated."); + logApp("Cron-Mail-Queue", "Locked", "Cron Mail Queue attempted to execute but was already executing so instead it terminated."); exit("Script is already running. Exiting."); } @@ -124,7 +124,7 @@ if (mysqli_num_rows($sql_queue) > 0) { appNotify("Cron-Mail-Queue", "Failed to send email #$email_id to $email_recipient_logging"); // Logging - logAction("Cron-Mail-Queue", "Error", "Failed to send email: $email_id to $email_recipient_logging regarding $email_subject_logging. $mail"); + logApp("Cron-Mail-Queue", "Error", "Failed to send email: $email_id to $email_recipient_logging regarding $email_subject_logging. $mail"); } else { // Update Message - Success mysqli_query($mysqli, "UPDATE email_queue SET email_status = 3, email_sent_at = NOW(), email_attempts = 1 WHERE email_id = $email_id"); @@ -136,7 +136,7 @@ if (mysqli_num_rows($sql_queue) > 0) { mysqli_query($mysqli, "UPDATE email_queue SET email_status = 2, email_attempts = 99 WHERE email_id = $email_id"); // Logging - logAction("Cron-Mail-Queue", "Error", "Failed to send email: $email_id due to invalid recipient address. Email subject was: $email_subject_logging"); + logApp("Cron-Mail-Queue", "Error", "Failed to send email: $email_id due to invalid recipient address. Email subject was: $email_subject_logging"); } } else { @@ -146,7 +146,7 @@ if (mysqli_num_rows($sql_queue) > 0) { mysqli_query($mysqli, "UPDATE email_queue SET email_status = 2, email_attempts = 99 WHERE email_id = $email_id"); // Logging - logAction("Cron-Mail-Queue", "Error", "Failed to send email #$email_id due to invalid sender address: $email_from_logging - check configuration in settings."); + logApp("Cron-Mail-Queue", "Error", "Failed to send email #$email_id due to invalid sender address: $email_from_logging - check configuration in settings."); appNotify("Mail", "Failed to send email #$email_id due to invalid sender address"); @@ -209,7 +209,7 @@ if (mysqli_num_rows($sql_failed_queue) > 0) { mysqli_query($mysqli, "UPDATE email_queue SET email_status = 2, email_failed_at = NOW(), email_attempts = $email_attempts WHERE email_id = $email_id"); // Logging - logAction("Cron-Mail-Queue", "Error", "Failed to re-send email #$email_id to $email_recipient_logging regarding $email_subject_logging. $mail"); + logApp("Cron-Mail-Queue", "Error", "Failed to re-send email #$email_id to $email_recipient_logging regarding $email_subject_logging. $mail"); } else { diff --git a/scripts/cron_ticket_email_parser.php b/scripts/cron_ticket_email_parser.php index 8fb999e6..f9276ad9 100644 --- a/scripts/cron_ticket_email_parser.php +++ b/scripts/cron_ticket_email_parser.php @@ -37,6 +37,7 @@ $company_phone = sanitizeInput(formatPhoneNumber($row['company_phone'])); // Check setting enabled if ($config_ticket_email_parse == 0) { + logApp("Cron-Email-Parser", "error", "Cron Email Parser unable to run - not enabled in admin settings."); exit("Email Parser: Feature is not enabled - check Settings > Ticketing > Email-to-ticket parsing. See https://docs.itflow.org/ticket_email_parse -- Quitting.."); }