Remove the function to check if php-mailparse is installed. Its not needed and was causing breaing issues and is an unessesary check

This commit is contained in:
johnnyq 2024-06-25 15:28:01 -04:00
parent 39ff97e9dd
commit 40866e34e2
1 changed files with 0 additions and 5 deletions

View File

@ -46,11 +46,6 @@ if (!function_exists('imap_open')) {
exit("Email Parser: PHP IMAP extension is not installed. See https://docs.itflow.org/ticket_email_parse -- Quitting..");
}
// Check mailparse extension works/installed
if (!function_exists('mailparse_msg_parse_file')) {
exit("Email Parser: PHP mailparse extension is not installed. See https://docs.itflow.org/ticket_email_parse -- Quitting..");
}
// Get system temp directory
$temp_dir = sys_get_temp_dir();