Skip to content

Commit 4879719

Browse files
committed
Updates to Supervisory Review rule topics
Issue #2179
1 parent 76e7044 commit 4879719

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

exchange/exchange-ps/exchange/policy-and-compliance/New-SupervisoryReviewRule.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You need to be assigned permissions in the Office 365 Security & Compliance Cent
2929

3030
### -------------------------- Example 1 --------------------------
3131
```
32-
New-SupervisoryReviewRule -Name "EU Brokers Rule" -Policy "EU Brokers Policy" -SamplingRate 100 -Conditions ((NOT(Reviewee:US Compliance)) -AND (Reviewee:EU Brokers) -AND ((trade) -OR (insider trading)) -AND (NOT(approved by the Contoso financial team)))
32+
New-SupervisoryReviewRule -Name "EU Brokers Rule" -Policy "EU Brokers Policy" -SamplingRate 100 -Conditions "((NOT(Reviewee:US Compliance)) -AND (Reviewee:EU Brokers) -AND ((trade) -OR (insider trading)) -AND (NOT(approved by the Contoso financial team)))"
3333
```
3434

3535
This example creates a new supervisory review rule named EU Brokers Rule with the following settings:
@@ -83,23 +83,23 @@ Accept wildcard characters: False
8383
### -Condition
8484
The Condition parameter specifies the conditions and exceptions for the rule. This parameter uses the following syntax:
8585
86-
- User or group communications to supervise: ((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...). Exceptions use the syntax (NOT((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...)).
86+
- User or group communications to supervise: "((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...)". Exceptions use the syntax "(NOT((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...))".
8787
88-
- Direction: ((Direction:Inbound) -OR (Direction:Outbound) -OR (Direction:Internal)).
88+
- Direction: "((Direction:Inbound) -OR (Direction:Outbound) -OR (Direction:Internal))".
8989
90-
- Message contains words: ((\<Word1orPhrase1\>) -OR (\<Word2orPhrase2\>)...). Exceptions use the syntax (NOT((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...)).
90+
- Message contains words: "((\<Word1orPhrase1\>) -OR (\<Word2orPhrase2\>)...)". Exceptions use the syntax "(NOT((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...))".
9191
92-
- Any attachment contains words: ((Attachment:\<word1\>) -OR (Attachment:\<word2\>)...). Exceptions use the syntax (NOT((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...)).
92+
- Any attachment contains words: "((Attachment:\<word1\>) -OR (Attachment:\<word2\>)...)". Exceptions use the syntax "(NOT((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...))".
9393
94-
- Any attachment has the extension: ((AttachmentName:.\<extension1\>) -OR (AttachmentName:.\<extension2\>)...). Exceptions use the syntax (NOT((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...)).
94+
- Any attachment has the extension: "((AttachmentName:.\<extension1\>) -OR (AttachmentName:.\<extension2\>)...)". Exceptions use the syntax "(NOT((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...))".
9595
96-
- Message size is larger than: (MessageSize:\<size in B, KB, MB or GB\>). For example (MessageSize:300KB). Exceptions use the syntax (NOT(MessageSize:\<size in B, KB, MB or GB\>))
96+
- Message size is larger than: "(MessageSize:\<size in B, KB, MB or GB\>)". For example "(MessageSize:300KB)". Exceptions use the syntax "(NOT(MessageSize:\<size in B, KB, MB or GB\>))".
9797
98-
- Any attachment is larger than: (AttachmentSize:\<size in B, KB, MB or GB\>). For example (AttachmentSize:3MB). Exceptions use the syntax (NOT(AttachmentSize:\<size in B, KB, MB or GB\>))
98+
- Any attachment is larger than: "(AttachmentSize:\<size in B, KB, MB or GB\>)". For example "(AttachmentSize:3MB)". Exceptions use the syntax "(NOT(AttachmentSize:\<size in B, KB, MB or GB\>))".
9999
100100
- Parentheses ( ) are required around the whole filter.
101101
102-
- Separate multiple conditions or exception types with the -AND operator. For example, ((Reviewee:[email protected]) -AND (AttachmentSize:3MB)).
102+
- Separate multiple conditions or exception types with the -AND operator. For example, "((Reviewee:[email protected]) -AND (AttachmentSize:3MB))".
103103
104104
```yaml
105105
Type: String

exchange/exchange-ps/exchange/policy-and-compliance/Set-SupervisoryReviewRule.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,14 @@ You need to be assigned permissions in the Office 365 Security & Compliance Cent
2929

3030
### -------------------------- Example 1 --------------------------
3131
```
32-
Set-SupervisoryReviewRule -Identity "EU Brokers Rule" -AddReviewers [email protected]
32+
Set-SupervisoryReviewRule -Identity "EU Brokers Rule" -Conditions "((NOT(Reviewee:US Compliance)) -AND (Reviewee:EU Brokers) -AND ((trade) -OR (insider trading)) -AND (NOT(approved by the Contoso financial team)))"
3333
```
3434

35-
This example adds the reviewer [email protected] to the rule named EU Brokers Rule.
35+
This example modifies the existing rule named EU Brokers Rule with the following settings:
36+
37+
- Conditions: Supervise inbound and outbound communications for members of the EU Brokers group that contain the words trade or insider trading.
38+
39+
- Exceptions: Exclude supervision for members of the EU Compliance group, or messages that contain the phrase "approved by the Contoso financial team".
3640

3741
## PARAMETERS
3842

@@ -60,23 +64,23 @@ Accept wildcard characters: False
6064
### -Condition
6165
The Condition parameter specifies the conditions and exceptions for the rule. This parameter uses the following syntax:
6266
63-
- User or group communications to supervise: ((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...). Exceptions use the syntax (NOT((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...)).
67+
- User or group communications to supervise: "((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...)". Exceptions use the syntax "(NOT((Reviewee:\<emailaddress1\>) -OR (Reviewee:\<emailaddress2\>)...))".
6468
65-
- Direction :((Direction:Inbound) -OR (Direction:Outbound) -OR (Direction:Internal)).
69+
- Direction: "((Direction:Inbound) -OR (Direction:Outbound) -OR (Direction:Internal))".
6670
67-
- Message contains words: ((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...). Exceptions use the syntax (NOT((\<Word1orPhrase1\>)-OR (\<Word2orPhrase2\>)...)).
71+
- Message contains words: "((\<Word1orPhrase1\>) -OR (\<Word2orPhrase2\>)...)". Exceptions use the syntax "(NOT((\<Word1orPhrase1\>) -OR (\<Word2orPhrase2\>)...))".
6872
69-
- Any attachment contains words: ((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...). Exceptions use the syntax (NOT((Attachment:\<word1\>)-OR (Attachment:\<word2\>)...)).
73+
- Any attachment contains words: "((Attachment:\<word1\>) -OR (Attachment:\<word2\>)...)". Exceptions use the syntax "(NOT((Attachment:\<word1\>) -OR (Attachment:\<word2\>)...))".
7074
71-
- Any attachment has the extension: ((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...). Exceptions use the syntax (NOT((AttachmentName:.\<extension1\>)-OR (AttachmentName:.\<extension2\>)...)).
75+
- Any attachment has the extension: "((AttachmentName:.\<extension1\>) -OR (AttachmentName:.\<extension2\>)...)". Exceptions use the syntax "(NOT((AttachmentName:.\<extension1\>) -OR (AttachmentName:.\<extension2\>)...))".
7276
73-
- Message size is larger than: (MessageSize:\<size in B, KB, MB or GB\>). For example (MessageSize:300KB). Exceptions use the syntax (NOT(MessageSize:\<size in B, KB, MB or GB\>))
77+
- Message size is larger than: "(MessageSize:\<size in B, KB, MB or GB\>)". For example "(MessageSize:300KB)". Exceptions use the syntax "(NOT(MessageSize:\<size in B, KB, MB or GB\>))".
7478
75-
- Any attachment is larger than: (AttachmentSize:\<size in B, KB, MB or GB\>). For example (AttachmentSize:3MB). Exceptions use the syntax (NOT(AttachmentSize:\<size in B, KB, MB or GB\>))
79+
- Any attachment is larger than: "(AttachmentSize:\<size in B, KB, MB or GB\>)". For example "(AttachmentSize:3MB)". Exceptions use the syntax "(NOT(AttachmentSize:\<size in B, KB, MB or GB\>))".
7680
7781
- Parentheses ( ) are required around the whole filter.
7882
79-
- Separate multiple conditions or exception types with the -AND operator. For example, ((Reviewee:[email protected]) -AND (AttachmentSize:3MB)).
83+
- Separate multiple conditions or exception types with the -AND operator. For example, "((Reviewee:[email protected]) -AND (AttachmentSize:3MB))".
8084
8185
```yaml
8286
Type: String

0 commit comments

Comments
 (0)