Skip to content

Commit efcf7ce

Browse files
authored
Merge pull request MicrosoftDocs#4973 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents d41763a + 241bc5e commit efcf7ce

13 files changed

+72
-54
lines changed

exchange/exchange-ps/exchange/antispam-antimalware/Disable-HostedContentFilterRule.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the Disable-HostedContentFilterRule cmdlet to disable content filter rules in your cloud-based organization.
18+
Use the Disable-HostedContentFilterRule cmdlet to disable spam filter rules (content filter rules) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -35,12 +35,12 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3535
Disable-HostedContentFilterRule "Contoso Recipients"
3636
```
3737

38-
This example disables the enabled content filter rule named Contoso Recipients.
38+
This example disables the enabled spam filter rule named Contoso Recipients.
3939

4040
## PARAMETERS
4141

4242
### -Identity
43-
The Identity parameter specifies the content filter rule that you want to disable. You can use any value that uniquely identifies the rule. For example:
43+
The Identity parameter specifies the spam filter rule that you want to disable. You can use any value that uniquely identifies the rule. For example:
4444

4545
- Name
4646

exchange/exchange-ps/exchange/antispam-antimalware/Enable-HostedContentFilterRule.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the Enable-HostedContentFilterRule cmdlet to enable content filter rules in your cloud-based organization.
18+
Use the Enable-HostedContentFilterRule cmdlet to enable spam filter rules (content filter rules) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -35,12 +35,12 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3535
Enable-HostedContentFilterRule "Contoso Recipients"
3636
```
3737

38-
This example enables the disabled content filter rule named Contoso Recipients.
38+
This example enables the disabled spam filter rule named Contoso Recipients.
3939

4040
## PARAMETERS
4141

4242
### -Identity
43-
The Identity parameter specifies the content filter rule that you want to enable. You can use any value that uniquely identifies the rule. For example:
43+
The Identity parameter specifies the spam filter rule that you want to enable. You can use any value that uniquely identifies the rule. For example:
4444

4545
- Name
4646

exchange/exchange-ps/exchange/antispam-antimalware/Get-HostedContentFilterPolicy.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the Get-HostedContentFilterPolicy cmdlet to view the settings of content filter policies in your cloud-based organization.
18+
Use the Get-HostedContentFilterPolicy cmdlet to view the settings of spam filter policies (content filter policies) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -35,19 +35,25 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3535
Get-HostedContentFilterPolicy
3636
```
3737

38-
This example shows a summary list of all the content filter policies in your cloud-based organization.
38+
This example shows a summary list of all the spam filter policies in your cloud-based organization.
3939

4040
### Example 2
4141
```powershell
4242
Get-HostedContentFilterPolicy Default | Format-List
4343
```
4444

45-
This example retrieves details about the content filter policy named Default.
45+
This example retrieves details about the spam filter policy named Default.
4646

4747
## PARAMETERS
4848

4949
### -Identity
50-
The Identity parameter specifies the content filter policy that you want to view. You can use any value that uniquely identifies the policy. For example, you can use the name, GUID or distinguished name (DN) of the content filter policy.
50+
The Identity parameter specifies the spam filter policy that you want to view. You can use any value that uniquely identifies the policy. For example:
51+
52+
- Name
53+
54+
- Distinguished name (DN)
55+
56+
- GUID
5157

5258
```yaml
5359
Type: HostedContentFilterPolicyIdParameter

exchange/exchange-ps/exchange/antispam-antimalware/Get-HostedContentFilterRule.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the Get-HostedContentFilterRule cmdlet to view content filter rules in your cloud-based organization.
18+
Use the Get-HostedContentFilterRule cmdlet to view spam filter rules (content filter rules) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -35,19 +35,19 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3535
Get-HostedContentFilterRule
3636
```
3737

38-
This example shows a summary list of all the content filter rules in your cloud-based organization.
38+
This example shows a summary list of all the spam filter rules in your cloud-based organization.
3939

4040
### Example 2
4141
```powershell
4242
Get-HostedContentFilterRule "Contoso Recipients" | Format-List
4343
```
4444

45-
This example retrieves details about the content filter rule named Contoso Recipients.
45+
This example retrieves details about the spam filter rule named Contoso Recipients.
4646

4747
## PARAMETERS
4848

4949
### -Identity
50-
The Identity parameter specifies the content filter rule that you want to view. You can use any value that uniquely identifies the rule. For example:
50+
The Identity parameter specifies the spam filter rule that you want to view. You can use any value that uniquely identifies the rule. For example:
5151

5252
- Name
5353

exchange/exchange-ps/exchange/antispam-antimalware/New-HostedContentFilterPolicy.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the New-HostedContentFilterPolicy cmdlet to create content filter policies in your cloud-based organization.
18+
Use the New-HostedContentFilterPolicy cmdlet to create spam filter policies (content filter policies) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -85,10 +85,10 @@ For more information about the limits for allowed and blocked senders, see [Exch
8585

8686
### Example 1
8787
```powershell
88-
New-HostedContentFilterPolicy -Name "Contoso Content Filter Policy" -HighConfidenceSpamAction Redirect -SpamAction Redirect -RedirectToRecipients [email protected] -FalsePositiveAdditionalRecipients [email protected]
88+
New-HostedContentFilterPolicy -Name "Contoso Spam Filter Policy" -HighConfidenceSpamAction Redirect -SpamAction Redirect -RedirectToRecipients [email protected] -FalsePositiveAdditionalRecipients [email protected]
8989
```
9090

91-
This example creates a content filter policy named Contoso Content Filter Policy with the following settings:
91+
This example creates a spam filter policy named Contoso Spam Filter Policy with the following settings:
9292

9393
- Redirect messages that are definitely spam or that may be spam to [email protected].
9494

@@ -97,7 +97,7 @@ This example creates a content filter policy named Contoso Content Filter Policy
9797
## PARAMETERS
9898

9999
### -Name
100-
The Name parameter specifies a unique name for the content filter policy. If the value contains spaces, enclose the value in quotation marks (").
100+
The Name parameter specifies a unique name for the spam filter policy. If the value contains spaces, enclose the value in quotation marks (").
101101

102102
The value itself can't contain the following characters: \\, %, &, \*, +, /, =, ?, {, }, \|, \<, \>, (, ), ;, :, [, ], comma (,), or double quotation mark (").
103103

@@ -115,7 +115,7 @@ Accept wildcard characters: False
115115
```
116116
117117
### -AddXHeaderValue
118-
The AddXHeaderValue parameter specifies the X-header value to add to spam messages when an action parameter is set to the value AddXHeader. The action parameters that use the value of this parameter are:
118+
The AddXHeaderValue parameter specifies the X-header value to add to spam messages when an action parameter is set to the value AddXHeader. The action parameters that use the this parameter are:
119119
120120
- BulkSpamAction
121121
@@ -127,9 +127,9 @@ The AddXHeaderValue parameter specifies the X-header value to add to spam messag
127127
128128
The value that you specify for this parameter must contain less than 256 characters, and can't contain spaces.
129129
130-
Note that when the TestModeAction parameter is set to AddXHeader, the following X-header value is automatically added to the message: X-CustomSpam: This message was filtered by the custom spam filter option.
130+
Note that when the TestModeAction parameter is set to AddXHeader, the following X-header value is automatically added to the message: `X-CustomSpam: This message was filtered by the custom spam filter option`.
131131

132-
An X-header is a user-defined, unofficial header field that exists in the message header. X-headers aren't specifically mentioned in RFC 2822, but the use of an undefined header field starting with X- has become an accepted way to add unofficial header fields to a message. The value you specify must contain less than 256 characters, and it can't contain spaces.
132+
An X-header is a user-defined, unofficial header field that exists in the message header. X-headers aren't specifically mentioned in RFC 2822, but the use of an undefined header field starting with `X-` has become an accepted way to add unofficial header fields to a message.
133133

134134
```yaml
135135
Type: String
@@ -261,7 +261,7 @@ Accept wildcard characters: False
261261
```
262262

263263
### -BulkThreshold
264-
The BulkThreshold parameter specifies the Bulk Complaint Level (BCL) threshold setting. Valid values are from 1 - 9, where 1 marks most bulk email as spam, and 9 allows the most bulk email to be delivered. The default value is 7. For more information, see [Configure your spam filter policies](https://docs.microsoft.com/microsoft-365/security/office-365-security/configure-your-spam-filter-policies).
264+
The BulkThreshold parameter specifies the Bulk Complaint Level (BCL) threshold setting. Valid values are from 1 - 9, where 1 marks most bulk email as spam, and 9 allows the most bulk email to be delivered. The default value is 7. For more information, see [Bulk Compliant Level values](https://docs.microsoft.com/microsoft-365/security/office-365-security/bulk-complaint-level-values).
265265

266266
```yaml
267267
Type: Int32

exchange/exchange-ps/exchange/antispam-antimalware/New-HostedContentFilterRule.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the New-HostedContentFilterRule cmdlet to create content filter rules in your cloud-based organization.
18+
Use the New-HostedContentFilterRule cmdlet to create spam filter rules (content filter rules) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -43,19 +43,19 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
4343

4444
### Example 1
4545
```powershell
46-
New-HostedContentFilterRule -Name "Contoso Recipients" -HostedContentFilterPolicy "Contoso Content Filter Policy" -RecipientDomainIs contoso.com
46+
New-HostedContentFilterRule -Name "Contoso Recipients" -HostedContentFilterPolicy "Contoso Spam Filter Policy" -RecipientDomainIs contoso.com
4747
```
4848

49-
This example creates a new content filter rule named Contoso Recipients with the following settings: If the recipient is in the domain contoso.com, apply the content filter policy named Contoso Content Filter Policy.
49+
This example creates a new spam filter rule named Contoso Recipients with the following settings: If the recipient is in the domain contoso.com, apply the spam filter policy named Contoso Spam Filter Policy.
5050

5151
## PARAMETERS
5252

5353
### -HostedContentFilterPolicy
54-
The HostedContentFilterPolicy parameter specifies the content filter policy to apply to messages that match the conditions defined by this content filter rule.
54+
The HostedContentFilterPolicy parameter specifies the spam filter policy to apply to messages that match the conditions defined by this spam filter rule.
5555

56-
You can use any value that uniquely identifies the policy. For example, you can specify the name, GUID, or distinguished name (DN) of the content filter policy.
56+
You can use any value that uniquely identifies the policy. For example, you can specify the name, GUID, or distinguished name (DN) of the spam filter policy.
5757

58-
You can't specify the default content filter policy. And, you can't specify a content filter policy that's already associated with another content filter rule.
58+
You can't specify the default spam filter policy. And, you can't specify a spam filter policy that's already associated with another spam filter rule.
5959

6060
```yaml
6161
Type: HostedContentFilterPolicyIdParameter
@@ -71,7 +71,7 @@ Accept wildcard characters: False
7171
```
7272
7373
### -Name
74-
The Name parameter specifies a unique name for the content filter rule. If the value contains spaces, enclose the value in quotation marks (").
74+
The Name parameter specifies a unique name for the spam filter rule. The maximum length is 64 characters. If the value contains spaces, enclose the value in quotation marks (").
7575
7676
The value itself can't contain the following characters: \\, %, &, \*, +, /, =, ?, {, }, \|, \<, \>, (, ), ;, :, [, ], comma (,), or double quotation mark (").
7777

exchange/exchange-ps/exchange/antispam-antimalware/Remove-HostedContentFilterPolicy.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the Remove-HostedContentFilterPolicy cmdlet to remove content filter policies from your cloud-based organization.
18+
Use the Remove-HostedContentFilterPolicy cmdlet to remove spam filter policies (content filter policies) from your cloud-based organization.
1919

2020
When a policy is removed and there are rules associated with it, the rules are not removed when the policy is removed. This is by design. If you want to remove the associated rules, you need to do this separately via the Remove-HostedContentFilterRule cmdlet.
2121

@@ -38,12 +38,18 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3838
Remove-HostedContentFilterPolicy "Contoso Content Filter Policy"
3939
```
4040

41-
This example removes the content filter policy named Contoso Content Filter Policy.
41+
This example removes the spam filter policy named Contoso Content Filter Policy.
4242

4343
## PARAMETERS
4444

4545
### -Identity
46-
The Identity parameter specifies the content filter policy you want to remove. You can use any value that uniquely identifies the policy, For example, you can use the name, GUID or distinguished name (DN) of the content filter policy.
46+
The Identity parameter specifies the spam filter policy that you want to remove. You can use any value that uniquely identifies the policy. For example:
47+
48+
- Name
49+
50+
- Distinguished name (DN)
51+
52+
- GUID
4753

4854
```yaml
4955
Type: HostedContentFilterPolicyIdParameter

exchange/exchange-ps/exchange/antispam-antimalware/Remove-HostedContentFilterRule.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ monikerRange: "exchonline-ps || eop-ps"
1515
## SYNOPSIS
1616
This cmdlet is available only in the cloud-based service.
1717

18-
Use the Remove-HostedContentFilterRule cmdlet to remove content filter rules in your cloud-based organization.
18+
Use the Remove-HostedContentFilterRule cmdlet to remove spam filter rules (content filter rules) in your cloud-based organization.
1919

2020
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-server/exchange-cmdlet-syntax).
2121

@@ -35,12 +35,12 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3535
Remove-Rule "Contoso Recipients"
3636
```
3737

38-
This example removes the content filter rule named Contoso Recipients.
38+
This example removes the spam filter rule named Contoso Recipients.
3939

4040
## PARAMETERS
4141

4242
### -Identity
43-
The Identity parameter specifies the content filter rule that you want to rule. You can use any value that uniquely identifies the rule. For example:
43+
The Identity parameter specifies the spam filter rule that you want to remove. You can use any value that uniquely identifies the rule. For example:
4444

4545
- Name
4646

0 commit comments

Comments
 (0)