Skip to content

Commit 72b7a07

Browse files
authored
Merge pull request MicrosoftDocs#10453 from MicrosoftDocs/chrisda
Common attachments filter updates
2 parents 9cf11b7 + bb4e6e3 commit 72b7a07

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

exchange/exchange-ps/exchange/New-MalwareFilterPolicy.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -419,10 +419,10 @@ Accept wildcard characters: False
419419
### -EnableFileFilter
420420
This parameter is available only in the cloud-based service.
421421

422-
The EnableFileFilter parameter enables or disables common attachment blocking (also known as the Common Attachment Types Filter). Valid values are:
422+
The EnableFileFilter parameter enables or disables the common attachments filter (also known as common attachment blocking). Valid values are:
423423

424-
- $true: Common attachment blocking is enabled. The file types are defined by the FileTypes parameter.
425-
- $false: Common attachment blocking is disabled. This is the default value.
424+
- $true: The common attachments filter is enabled. The file types are defined by the FileTypes parameter.
425+
- $false: The common attachments filter is disabled. This is the default value.
426426

427427
```yaml
428428
Type: Boolean
@@ -500,10 +500,10 @@ Accept wildcard characters: False
500500
### -FileTypeAction
501501
This parameter is available only in the cloud-based service.
502502

503-
The FileTypeAction parameter specifies what's done to messages that contain one or more attachments where the file extension is included in the FileTypes parameter (common attachment blocking). Valid values are:
503+
The FileTypeAction parameter specifies what's done to messages that contain one or more attachments where the file extension is included in the FileTypes parameter (the common attachments filter). Valid values are:
504504

505-
- Quarantine: Quarantine the message. This is the default value. Whether or not the recipient is notified depends on the quarantine notification settings in the quarantine policy that's selected for the policy by the QuarantineTag parameter.
506-
- Reject: The message is rejected in a non-delivery report (also known as an NDR or bounce message) to the sender. The message is not available in quarantine.
505+
- Quarantine: Quarantine the message. Whether or not the recipient is notified depends on the quarantine notification settings in the quarantine policy that's selected for the policy by the QuarantineTag parameter.
506+
- Reject: The message is rejected in a non-delivery report (also known as an NDR or bounce message) to the sender. The message is not available in quarantine. This is the default value.
507507

508508
This parameter is meaningful only when the EnableFileFilter parameter is set to the value $true.
509509

@@ -523,13 +523,13 @@ Accept wildcard characters: False
523523
### -FileTypes
524524
This parameter is available only in the cloud-based service.
525525

526-
The FileTypes parameter specifies the file types that are automatically blocked by common attachment blocking (also known as the Common Attachment Types Filter), regardless of content. The default values are:
526+
The FileTypes parameter specifies the file types that are automatically blocked by the common attachments filter, regardless of content. The default values are:
527527

528528
`ace, ani, apk, app, appx, arj, bat, cab, cmd, com, deb, dex, dll, docm, elf, exe, hta, img, iso, jar, jnlp, kext, lha, lib, library, lnk, lzh, macho, msc, msi, msix, msp, mst, pif, ppa, ppam, reg, rev, scf, scr, sct, sys, uif, vb, vbe, vbs, vxd, wsc, wsf, wsh, xll, xz, z`
529529

530-
You enable or disable common attachment blocking by using the EnableFileFilter parameter.
530+
You enable or disable the common attachments filter by using the EnableFileFilter parameter.
531531

532-
Common attachment blocking uses best effort true-typing to detect the file type regardless of the file name extension. If true-typing fails or isn't supported for the specified file type, then extension matching is used. For example, .ps1 files are Windows PowerShell scripts, but their true type is text.
532+
The common attachments filter uses best effort true-typing to detect the file type regardless of the file name extension. If true-typing fails or isn't supported for the specified file type, then extension matching is used. For example, .ps1 files are Windows PowerShell scripts, but their true type is text.
533533

534534
To replace the existing list of file types with the values you specify, use the syntax `FileType1,FileType2,...FileTypeN`. To preserve existing values, be sure to include the file types that you want to keep along with the new values that you want to add.
535535

exchange/exchange-ps/exchange/Set-MalwareFilterPolicy.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ $FileTypesAdd += "dgz","mde"
7575
Set-MalwareFilterPolicy -Identity Default -EnableFileFilter $true -FileTypes $FileTypesAdd
7676
```
7777

78-
This example enables common attachment blocking in the malware filter policy named Default and adds the file types "dgz" and "mde" without affecting the other file type entries.
78+
This example enables the common attachments filter in the malware filter policy named Default and adds the file types "dgz" and "mde" without affecting the other file type entries.
7979

8080
### Example 3
8181
```powershell
@@ -86,7 +86,7 @@ $a.RemoveAt(6)
8686
Set-MalwareFilterPolicy -Identity Default -FileTypes $a
8787
```
8888

89-
This example modifies the malware filter policy named Default by removing an existing file type from common attachment blocking without affecting other file types that are already defined.
89+
This example modifies the malware filter policy named Default by removing an existing file type from the common attachments filter without affecting other file types that are already defined.
9090

9191
The first three commands return the existing list of file types. The first file type in the list has the index number 0, the second has the index number 1, and so on. You use the index number to specify the file type that you want to remove.
9292

@@ -445,10 +445,10 @@ Accept wildcard characters: False
445445
### -EnableFileFilter
446446
This parameter is available only in the cloud-based service.
447447

448-
The EnableFileFilter parameter enables or disables common attachment blocking (also known as the Common Attachment Types Filter). Valid values are:
448+
The EnableFileFilter parameter enables or disables the common attachments filter (also known as common attachment blocking). Valid values are:
449449

450-
- $true: Common attachment blocking is enabled. The file types are defined by the FileTypes parameter.
451-
- $false: Common attachment blocking is disabled. This is the default value.
450+
- $true: The common attachments filter is enabled. The file types are defined by the FileTypes parameter.
451+
- $false: The common attachments filter is disabled. This is the default value.
452452

453453
```yaml
454454
Type: Boolean
@@ -526,10 +526,10 @@ Accept wildcard characters: False
526526
### -FileTypeAction
527527
This parameter is available only in the cloud-based service.
528528

529-
The FileTypeAction parameter specifies what's done to messages that contain one or more attachments where the file extension is included in the FileTypes parameter (common attachment blocking). Valid values are:
529+
The FileTypeAction parameter specifies what's done to messages that contain one or more attachments where the file extension is included in the FileTypes parameter (the common attachments filter). Valid values are:
530530

531-
- Quarantine: Quarantine the message. This is the default value. Whether or not the recipient is notified depends on the quarantine notification settings in the quarantine policy that's selected for the policy by the QuarantineTag parameter.
532-
- Reject: The message is rejected in a non-delivery report (also known as an NDR or bounce message) to the sender. The message is not available in quarantine.
531+
- Quarantine: Quarantine the message. Whether or not the recipient is notified depends on the quarantine notification settings in the quarantine policy that's selected for the policy by the QuarantineTag parameter.
532+
- Reject: The message is rejected in a non-delivery report (also known as an NDR or bounce message) to the sender. The message is not available in quarantine. This is the default value.
533533

534534
This parameter is meaningful only when the EnableFileFilter parameter is set to the value $true.
535535

@@ -549,17 +549,17 @@ Accept wildcard characters: False
549549
### -FileTypes
550550
This parameter is available only in the cloud-based service.
551551

552-
The FileTypes parameter specifies the file types that are automatically blocked by common attachment blocking (also known as the Common Attachment Types Filter), regardless of content. The default values are:
552+
The FileTypes parameter specifies the file types that are automatically blocked by the common attachments filter, regardless of content. The default values are:
553553

554554
`ace, ani, apk, app, appx, arj, bat, cab, cmd, com, deb, dex, dll, docm, elf, exe, hta, img, iso, jar, jnlp, kext, lha, lib, library, lnk, lzh, macho, msc, msi, msix, msp, mst, pif, ppa, ppam, reg, rev, scf, scr, sct, sys, uif, vb, vbe, vbs, vxd, wsc, wsf, wsh, xll, xz, z`
555555

556-
You enable or disable common attachment blocking by using the EnableFileFilter parameter.
556+
You enable or disable the common attachments filter by using the EnableFileFilter parameter.
557557

558-
Common attachment blocking uses best effort true-typing to detect the file type regardless of the file name extension. If true-typing fails or isn't supported for the specified file type, then extension matching is used. For example, .ps1 files are Windows PowerShell scripts, but their true type is text.
558+
The common attachments filter uses best effort true-typing to detect the file type regardless of the file name extension. If true-typing fails or isn't supported for the specified file type, then extension matching is used. For example, .ps1 files are Windows PowerShell scripts, but their true type is text.
559559

560560
To replace the existing list of file types with the values you specify, use the syntax `FileType1,FileType2,...FileTypeN`. To preserve existing values, be sure to include the file types that you want to keep along with the new values that you want to add.
561561

562-
To add or remove file types without affecting the other file type entries, see the Examples section.
562+
To add or remove file types without affecting the other file type entries, see the Examples section in the Set-MalwareFilterPolicy cmdlet topic.
563563

564564
```yaml
565565
Type: String[]

0 commit comments

Comments
 (0)