Różnice między wybraną wersją a wersją aktualną.
|
windows:exchange [2015/07/04 20:02] gcze |
windows:exchange [2015/12/28 21:56] (aktualna) gcze |
||
|---|---|---|---|
| Linia 59: | Linia 59: | ||
| Group Policy Management Editor Computer Configuration -> Windows Settings -> Security Settings -> Account Policies -> Password Policy | Group Policy Management Editor Computer Configuration -> Windows Settings -> Security Settings -> Account Policies -> Password Policy | ||
| </file> | </file> | ||
| + | |||
| + | ====== Blokowanie adresów i całych domen ====== | ||
| + | |||
| + | |||
| + | <code> | ||
| + | Set-SenderFilterConfig -BlockedSenders <MultiValuedProperty> | ||
| + | </code> | ||
| + | |||
| + | For example, to block kim@contoso.com, run the following command: | ||
| + | |||
| + | <code> | ||
| + | Set-SenderFilterConfig -BlockedSenders kim@contoso.com | ||
| + | </code> | ||
| + | |||
| + | To block a domain, run the following command: | ||
| + | <code> | ||
| + | |||
| + | Set-SenderFilterConfig -BlockedDomains <MultiValuedProperty> | ||
| + | </code> | ||
| + | |||
| + | For example, to block the domain contoso.com, run the following command: | ||
| + | <code> | ||
| + | |||
| + | Set-SenderFilterConfig -BlockedDomains contoso.com | ||
| + | </code> | ||
| + | |||
| + | To block a domain and its subdomains, run the following command: | ||
| + | <code> | ||
| + | |||
| + | Set-SenderFilterConfig -BlockedDomainsAndSubdomains <MultiValuedProperty> | ||
| + | </code> | ||
| + | |||
| + | For example, to block the domain contoso.com and all its subdomains, such as mail.constoso.com, run the following command: | ||
| + | |||
| + | <code> | ||
| + | Set-SenderFilterConfig -BlockedDomainsAndSubdomains contoso.com | ||
| + | </code> | ||
| + | |||
| + | To block inbound messages from senders that do not specify a sender and a domain in the MAIL: FROM SMTP header, run the following command: | ||
| + | |||
| + | <code> | ||
| + | Set-SenderFilterConfig -BlankSenderBlockingEnabled $true | ||
| + | </code> | ||
| + | |||
| + | |||
| + | |||