SELECTED ANSWER
replied on August 29, 2017
In order to perform one of these searches, you'll have to use the syntax directly; as of this writing they have not been added to the UI.
There are a few different possibilities:
- {LFACE:trustee="trusteename"} - find entries where trusteename has security assigned to them (or denied to them)
- {LFACE:type="allow"} (or {LFACE:type="deny"}) - find entries where security is allowed or denied to some trustee (that is, user or group)
- {LFACE:scope="scopename"} - find entries with an access control entry with the specified scope; the scope names are "documentsonly", "thisentry", "folders", "foldersonly", "immediate", "immediatechildren", "immediatedocuments", "notthisentry", and "all".
- {LFACE:rights="rights"} - find entries where a trustee is granted or denied rights. Rights should be a sequence of three-letter codes, such as are visible in the "security" column: "brs", "rea", "mcn", "ada", "del", "ren", "dpg", "san", "ann", "red", "wme", "crd", "crf", "rac", "wac", "cow", "srd", "frz", "evt", "cls". These codes are case-insensitive. You may also want to add an asterisk at the end to specify "and also other rights". For example, "BrsReaMCn*" would find entries where a trustee is allowed or denied Browse, Read, and Modify Content, even if they are also allowed or denied other rights as well.
Most likely, you'll want to combine one or more of these. For example, if you wanted to find entries where ADMIN is denied rights to that entry and all of its descendants, you would search for
{LFACE:trustee="ADMIN", type="deny", scope="all"}
Hopefully that will at least get you started; if you have follow-up questions feel free to ask.