You deploy a server that has the Exchange Server 2013 Mailbox server role and Client Access server role installed.
You need to configure anti-spam to meet the following requirements:
Email messages sent from the Internet to a distribution list named Executives must be rejected.
Email messages that contain the words casino and jackpot must be rejected, unless they were sent to [email protected].
Which three cmdlets should you run? (Each correct answer presents part of the solution. Choose three.)
A.
Add ContentFilterPhrase
B.
Set-ContentFilterConfig
C.
Set-TransportConfig
D.
Set-SenderReputationConfig
E.
Set-RecipientFilterConfig
Explanation:
Add ContentFilterPhrase
The Add-ContentFilterPhrase cmdlet adds phrases to the Allow or Block phrases list.
Use the Add-ContentFilterPhrase cmdlet to define custom words for the Content Filter agent. A custom word is
a word or phrase that the administrator sets for the Content Filter agent to evaluate the content of an e-mail
message and apply appropriate filter processing.
Syntax
Examples
EXAMPLE 1
This example adds the phrase Free credit report to the Block phrase list. Any messages that contain this
phrase will be marked as spam by the Content Filtering agent.
Add-ContentFilterPhrase -Phrase “Free credit report” -Influence BadWord
Set-ContentFilterConfig
Use the Set-ContentFilterConfig cmdlet to modify the content filter configuration on a Mailbox server or an Edge
Transport server.
Syntax
Set-ContentFilterConfig [-BypassedRecipients <MultiValuedProperty>] [-BypassedSenderDomains
<MultiValuedProperty>] [-BypassedSenders <MultiValuedProperty>] [-Confirm [<SwitchParameter>]] [-
DomainController <Fqdn>] [-Enabled <$true | $false>] [-ExternalMailEnabled <$true | $false>] [-
InternalMailEnabled <$true | $false>] [-OutlookEmailPostmarkValidationEnabled <$true | $false>] [-
QuarantineMailbox <SmtpAddress>] [-RejectionResponse <AsciiString>] [-SCLDeleteEnabled <$true | $false>]
[-SCLDeleteThreshold <Int32>] [-SCLQuarantineEnabled <$true | $false>] [-SCLQuarantineThreshold <Int32>]
[-SCLRejectEnabled <$true | $false>] [-SCLRejectThreshold <Int32>] [-WhatIf [<SwitchParameter>]]
EXAMPLE 1
This example specifies the sender domain woodgrovebank.com as a bypassed domain. Messages received
from that domain bypass the Content Filter agent.
Set-ContentFilterConfig -BypassedSenderDomains woodgrovebank.com
Set-RecipientFilterConfig
Use the Set-RecipientFilterConfig cmdlet to enable and configure the Recipient Filter agent.
Syntax
Set-RecipientFilterConfig [-BlockedRecipients <MultiValuedProperty>] [-BlockListEnabled <$true | $false>] [-Confirm [<SwitchParameter>]] [-DomainController <Fqdn>] [-Enabled <$true | $false>] [-ExternalMailEnabled
<$true | $false>] [-InternalMailEnabled <$true | $false>] [-RecipientValidationEnabled <$true | $false>] [-WhatIf
[<SwitchParameter>]]
EXAMPLE 1
This example modifies the Recipient Filter agent configuration so that recipient validation is enabled.
Set-RecipientFilterConfig -RecipientValidationEnabled $true
EXAMPLE 2
This example makes the following changes to the Recipient Filter agent configuration: Enables the Blocked
Recipients list.
Adds two users to the Blocked Recipients list.
Set-RecipientFilterConfig -BlockListEnabled $true –BlockedRecipients
[email protected],[email protected]
NOT C Set-TransportConfig
Use the Set-TransportConfig cmdlet to modify the transport configuration settings for the whole Exchange
organization.
This example configures the Exchange organization to redirect all journaling reports that can’t be delivered to
the journaling mailbox to the email account [email protected].
Set-TransportConfig -JournalingReportNdrTo [email protected]
NOT D Set-SenderReputationConfig
Use the Set-SenderReputationConfig cmdlet to modify the sender reputation configuration on a Mailbox server
or an Edge Transport server.
Sender reputation is part of the Exchange anti-spam functionality that blocks messages according to many
characteristics of the sender.
Sender reputation relies on persisted data about the sender to determine what action, if any, to take on an
inbound message. The Protocol Analysis agent is the underlying agent for sender reputation functionality.
When you configure anti-spam agents on an Exchange server, the agents act on messages cumulatively to
reduce the number of unsolicited messages that enter the organization.
Syntax
EXAMPLE 1
This example makes the following modifications to the sender reputation configuration:
It sets the sender reputation action to block all senders whose sender reputation level (SRL) rating exceeds the
SRL threshold.
It sets the SRL blocking threshold to 6.
It sets the number of hours that senders are put on the blocked senders list to 36 hours.
Set-SenderReputationConfig -SenderBlockingEnabled $true -SrlBlockThreshold 6 -SenderBlockingPeriod 36
Add-ContentFilterPhrase: Exchange 2013 Help
Set-ContentFilterConfig: Exchange 2013 Help
Set-RecipientFilterConfig: Exchange 2013 Help