Server Side Filters

Server side filters enable filtering the contents of a folder. For example hiding private elements or elements from a certain person. In order to create a filter, an SQL like query language is used. The query can be entered either manually or
A query consists of a field name and a constant, for example
Sensitiiy = bitmask 2
finds all private elements. If we want to hide private elements, we write
not (Sensitiiy = bitmask 2)
In order to hide private elements from certain persons, we can extend the query:
not (Sensitiiy = bitmask 2 and (SenderName = "User1" or SenderName = "User2"))
|