webmail: Add JFIF, remove BZ2, TAR, GZ from expectations list

This commit is contained in:
Thomas Stromberg 2022-10-27 16:26:43 -04:00
parent d7e946f80e
commit 5bbde18759
Failed to extract signature
1 changed files with 2 additions and 5 deletions

View File

@ -27,17 +27,16 @@ WHERE
AND file.btime > (strftime('%s', 'now') -86400)
-- Extensions that would not normally raise suspicion if sent by e-mail (excludes dmg, iso, lnk, exe)
AND extension NOT IN (
'bz2',
'cer',
'csv',
'doc',
'docx',
'eml',
'gif',
'gz',
'htm',
'html',
'icloud',
'jfif',
'jpeg',
'jpg',
'mov',
@ -54,7 +53,6 @@ WHERE
'ppt',
'pptx',
'pub',
'tar',
'tif',
'tiff',
'txt',
@ -62,6 +60,5 @@ WHERE
'xls',
'xlsm',
'xlsx',
'zip',
'zstd'
'zip'
)