[SOLVED] Combined rules in "ContentType Filter"

kingtutt

New Member
Jul 11, 2016
4
1
1
60
Hello,

is there a possibilty to define rules like:

> content-type= ! (application/pdf | text/plain)

in "ContentType Filter"?

Thanks in advance
KingTutt
 
  • Like
Reactions: thiagotgc
You can use rule priorities to achieve that. Simply define a rule that match (application/pdf | text/plain), and
use a final action (block or accept). Any rule after that rule after this one satisfies ! (application/pdf | text/plain).
Does that help?