From 16000efcf7f7c833aae9f8da22d2a82df21a49c0 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Fri, 31 Jul 2026 12:39:10 -0400 Subject: [PATCH] Drop SVG extension in the ticket mail parser --- cron/ticket_email_parser.php | 2 +- includes/app_version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cron/ticket_email_parser.php b/cron/ticket_email_parser.php index f7d501f9..9d677c99 100644 --- a/cron/ticket_email_parser.php +++ b/cron/ticket_email_parser.php @@ -54,7 +54,7 @@ if ($config_ticket_email_parse == 0) { // job. flock covers the same ground and the kernel drops it however the process ends. // Allowed attachment extensions -$allowed_extensions = array('jpg', 'jpeg', 'gif', 'png', 'webp', 'svg', 'pdf', 'txt', 'md', 'doc', 'docx', 'csv', 'xls', 'xlsx', 'xlsm', 'zip', 'tar', 'gz'); +$allowed_extensions = array('jpg', 'jpeg', 'gif', 'png', 'webp', 'pdf', 'txt', 'md', 'doc', 'docx', 'csv', 'xls', 'xlsx', 'xlsm', 'zip', 'tar', 'gz'); // Processing limits $max_emails_per_run = 50; // Cap per cron run to bound memory usage (cron catches up on the next run) diff --git a/includes/app_version.php b/includes/app_version.php index 625e0649..49e87129 100644 --- a/includes/app_version.php +++ b/includes/app_version.php @@ -5,4 +5,4 @@ * Update this file each time we merge develop into master. Format is YY.MM (add a .v if there is more than one release a month. */ -DEFINE("APP_VERSION", "26.07.1"); +DEFINE("APP_VERSION", "26.08");