Explanation/Reference:
Explanation:
NOT A
Set-TransportConfig not required in this scenario
Use the Set-TransportConfig cmdlet to modify the transport configuration settings for the whole Exchange organization.
NOT B
Set-TransportConfig not required in this scenario
Use the Set-TransportConfig cmdlet to modify the transport configuration settings for the whole Exchange organization.
Use the Set-SenderReputationConfig cmdlet to modify the sender reputation configuration on a Mailbox server or an Edge Transport server.
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
NOT D
Who sent the emails is not required in this scenario
Use the Set-SenderFilterConfig cmdlet to modify the Sender Filter agent configuration.
EXAMPLE 1
This example makes the following modifications to the Sender Filter agent configuration:
It enables blocking of blank senders.
It blocks messages from lucernepublishing.com and all subdomains.
It adds
[email protected] and
[email protected] to the blocked senders list without affecting any existing entries.
Set-SenderFilterConfig -BlankSenderBlockingEnabled $true -BlockedDomainsAndSubdomains lucernepublishing.com -BlockedSenders @{Add="
[email protected]","
[email protected]"} C
Use the Set-ContentFilterConfig cmdlet to modify the content filter configuration on a Mailbox server or an Edge Transport server.
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
Use the Set-RecipientFilterConfig cmdlet to enable and configure the Recipient Filter agent.
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]Set-ContentFilterConfig: Exchange 2013 Help
Set-RecipientFilterConfig: Exchange 2013 Help