Collective terms
The following collective terms can be used in Content Control instead of individual file extensions:
| .executable | .aab .action .air .aout .apk .app .AppImage .applescript .appx .ax .axf .bas .bash .bat .bin .bundle .cab .chm .class .cmd .coff .com .command .cpl .csh .deb .dll .dmg .dylib .ear .elf .exe .gadget .hta .inf .ins .inx .ipa .isu .jar .job .js .jse .kext .ko .ksh .lnk .lua .m .mex .mod .mpkg .msc .msi .msix .msp .mst .o .ocx .osx .out .paf .pcd .pex .php .pif .pkg .pl .prg .prx .ps1 .puff .py .pyc .r .rb .reg .rgs .rkt .rpm .rsrc .run .scpt .scr .sct .sh .shb .shs .so .swf .sys .tcl .tcsh .u3p .vb .vba .vbe .vbs .vbscript .vbx .war .wasm .workflow .ws .wsc .wsf .wsh .xap .zsh |
| .mediafile | .aif .flv .mp1 .mid .mp5 .mpa .wma .mp2 .mpe .swf .wmf .wav .mp4 .wmv .mpg .avi .mov .mp3 .mpv2 .mp2v .aiff .mpeg |
| .docmacro | All macros in .doc files |
| .xlsmacro | All macros in .xls files |
RegExp
The following RegExp can be used in Dictionaries of the Compliance Filter:
| RegEx | Description | Example |
| (Phrase1|Phrase2) | Check for Phrase 1 or 2 | (test1@hornetsecurity.com|test2@hornetsecurity.com) |
| „“ | Limits the search phrase | “test1@hornetsecurity.com” |
| . | Placeholder for a single character | Horn.t = Hornet, Hornat, Hornit, etc. |
| .* | Placeholder for multiple characters in front of item | .*@hornetsecutiy.com |
| * | Prefix can appear multiple times | a* = aa, aaa, aaaaa, etc.. |
| ? | Prefix can only appear once or never | Out?= Out, Ou |
| \d | Placeholder for any number (0-9) | test\d@hornetsecurity.com |
| \s | Replaces any non-printable character | Space, Tab, etc. |
| \w | Any character/number + underscore | a-z, A-Z-,0-9, _ |
| \b | Sets boundaries | Hornet\b will not trigger with Hornetsecurity |
Note:
The "\^" and "\$" are not supported!