Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2011-05-07
Use the Set-MailboxJunkEmailConfiguration cmdlet to configure the junk e-mail rule for a specific mailbox.
Syntax
Set-MailboxJunkEmailConfiguration -Identity
<MailboxIdParameter> [-BlockedSendersAndDomains
<MultiValuedProperty>] [-Confirm [<SwitchParameter>]]
[-ContactsTrusted <$true | $false>] [-DomainController
<Fqdn>] [-Enabled <$true | $false>]
[-IgnoreDefaultScope <SwitchParameter>] [-TrustedListsOnly
<$true | $false>] [-TrustedSendersAndDomains
<MultiValuedProperty>] [-WhatIf
[<SwitchParameter>]]
|
Detailed Description
The junk e-mail rule helps Microsoft Outlook and Microsoft Office Outlook Web App users to automatically remove any spam that gets past anti-spam filters and reaches the users' mailboxes. With this cmdlet, users and administrators can make changes to the junk e-mail rule that's configured for a specific mailbox.
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Mailbox junk e-mail configuration" entry in the Transport Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter |
The Identity parameter identifies the mailbox. You can use one of the following values:
|
BlockedSendersAndDomains |
Optional |
Microsoft.Exchange.Data.MultiValuedProperty |
The BlockedSendersAndDomains parameter specifies a list of the individual senders and domains that are blocked by the junk e-mail rule. |
Confirm |
Optional |
System.Management.Automation.SwitchParameter |
The Confirm switch causes the command to pause processing and requires you to acknowledge what the command will do before processing continues. You don't have to specify a value with the Confirm switch. |
ContactsTrusted |
Optional |
System.Boolean |
The ContactsTrusted parameter specifies whether the contacts in the Contacts folder are treated as trusted senders. |
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that writes this configuration change to Active Directory. |
Enabled |
Optional |
System.Boolean |
The Enabled parameter specifies whether the junk e-mail rule is enabled on this mailbox. |
IgnoreDefaultScope |
Optional |
System.Management.Automation.SwitchParameter |
The IgnoreDefaultScope parameter instructs the command to ignore the default recipient scope setting for the Exchange Management Shell session and use the entire forest as the scope. This allows the command to access Active Directory objects that aren't currently in the default scope. Using the IgnoreDefaultScope parameter introduces the following restrictions:
|
TrustedListsOnly |
Optional |
System.Boolean |
The TrustedListsOnly parameter specifies that only messages from trusted senders and domains are allowed to be sent to the mailbox. All other messages are considered spam by the junk e-mail rule. |
TrustedSendersAndDomains |
Optional |
Microsoft.Exchange.Data.MultiValuedProperty |
The TrustedSendersAndDomains parameter specifies a list of the individual senders and domains that are considered trusted senders. Messages from these senders and domains aren't processed by the junk e-mail rule. |
WhatIf |
Optional |
System.Management.Automation.SwitchParameter |
The WhatIf switch instructs the command to simulate the actions that it would take on the object. By using the WhatIf switch, you can view what changes would occur without having to apply any of those changes. You don't have to specify a value with the WhatIf switch. |
Input Types
To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.
Return Types
To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.
Examples
EXAMPLE 1
This example disables the junk e-mail rule configuration for the user David Pelton.
Copy Code | |
---|---|
Set-MailboxJunkEmailConfiguration -Identity "David Pelton" -Enabled $false |
EXAMPLE 2
This example makes the following configuration changes
to the junk e-mail rule for the user Michele
Martin
:
- Adds
contoso.com
andfabrikam.com
as trusted domains.
- Adds
jane@fourthcoffee.com
as a blocked sender.
The example uses a temporary variable
$Temp
to make these changes because the parameters
being modified are multivalued parameters. Using a temporary
variable preserves any existing values.
Copy Code | |
---|---|
$Temp = Get-MailboxJunkEmailConfiguration "Michele Martin" $Temp.TrustedSendersAndDomains += "contoso.com","fabrikam.com" $Temp.BlockedSendersAndDomain += "jane@fourthcoffee.com" Set-MailboxJunkEmailConfiguration -Identity "Michele Martin" -TrustedSendersAndDomains $Temp.TrustedSendersAndDomains -BlockedSendersAndDomains $Temp.BlockedSendersAndDomains |
EXAMPLE 3
This example identifies any mailboxes for which the junk e-mail rule is configured to treat contacts as trusted senders and then changes the junk e-mail configuration to not treat contacts as trusted senders.
Copy Code | |
---|---|
Get-MailboxJunkEmailConfiguration * | Where {$_.ContactsTrusted -eq $true} | Set-MailboxJunkEmailConfiguration -ContactsTrusted $false |