Update-GlobalAddressList -Identity "要更新的全域通訊清單名稱"
- May 11 Mon 2015 15:09
Exchange 2013 使用命令介面更新全域通訊清單
- May 11 Mon 2015 11:30
Exchange 2013 查詢MBX 對應 CAS設定
POWER SHELL下輸入
GET-MAILBOXDATABASE | SELECT RPCCLIENTACCESSSERVER,NAME,SERVERNAME
- May 11 Mon 2015 10:48
Exchange 2013 導入Spamhaus 阻擋垃圾信
Add-IPBlockListProvider -Name SpamhausSBL -LookupDomain sbl.spamhaus.org -AnyMatch $true -Enabled $true -RejectionResponse "IP address is listed by Spamhaus"
Add-IPBlockListProvider -Name SpamhausXBL -LookupDomain xbl.spamhaus.org -AnyMatch $true -Enabled $true -RejectionResponse "IP address is listed by Spamhaus"
Add-IPBlockListProvider -Name SpamhausPBL -LookupDomain pbl.spamhaus.org -AnyMatch $true -Enabled $true -RejectionResponse "IP address is listed by Spamhaus"
Add-IPBlockListProvider -Name SpamhausSBL+XBL -LookupDomain sbl-xbl.spamhaus.org -AnyMatch $true -Enabled $true -RejectionResponse "IP address is listed by Spamhaus"
最後打入
Get-IPBLOCKLISTPROVIDER
確認設定
設定完畢要加入IP
Set-IPBlockListProvider "zen.spamhaus.org" -IPAddressesMatch @{Add="127.0.0.2","127.0.0.4","127.0.0.5","127.0.0.6","127.0.0.7","127.0.0.8","127.0.0.10","127.0.0.11"}
Set-IPBlockListProvider "SpamhausSBL" -IPAddressesMatch @{Add="127.0.0.2"}
Set-IPBlockListProvider "SpamhausXBL" -IPAddressesMatch @{Add="127.0.0.4","127.0.0.5","127.0.0.6","127.0.0.7","127.0.0.8"}
Set-IPBlockListProvider "SpamhausPBL" -IPAddressesMatch @{Add="127.0.0.10","127.0.0.11"}
Set-IPBlockListProvider "SpamhausSBL+XBL" -IPAddressesMatch @{Add="127.0.0.2","127.0.0.3","127.0.0.4","127.0.0.5","127.0.0.6","127.0.0.7","127.0.0.8"}
可參考國外網站設定
http://exchangeserverpro.com/add-ip-block-list-provider-exchange-server-2013-edge-transport/
國內網站設定
不自量力的weITHENN == >http://www.weithenn.org/2009/07/exchange-2003-dnsbl.html
- Apr 15 Wed 2015 10:56
(轉貼)Exchange Server 2013 Antispam反垃圾郵件設定
來源網址:http://millcotw.blogspot.tw/2014/07/exchange-server-2013-antispam.html#!/2014/07/exchange-server-2013-antispam.html
Exchange Server 2013 Antispam反垃圾郵件設定 討厭的是Exchange Server 2013反垃圾郵件功能竟然沒有圖形化介面去設定
歡喜的是Exchange Server 2013的惡意程式過濾竟然免費提供,雖然不知道效果會不會是"笑果"
官方說明網頁:http://technet.microsoft.com/zh-tw/library/jj150481%28v=exchg.150%29.aspx
列出下列指令,一次下完即可以啟動內建的反垃圾郵件功能
但別忘了修改Set-TransportConfig的SMTP IP,以及確認SCL值的拿捏
啟動反垃圾郵件功能
& $env:ExchangeInstallPath\Scripts\Install-AntiSpamAgents.ps1
Restart-Service MSExchangeTransport
Set-TransportConfig -InternalSMTPServers @{Add="10.0.1.10","10.0.1.11"}
寄件者篩選
Set-SenderFilterConfig -Enabled $true
Set-SenderFilterConfig -BlankSenderBlockingEnabled $true
寄件者識別碼篩選
Set-SenderIDConfig -Enabled $true
Set-SenderIDConfig -SpoofedDomainAction Reject
Set-SenderIDConfig -TempErrorAction StampStatus
內容篩選
Set-ContentFilterConfig -Enabled $true
Set-ContentFilterConfig -ExternalMailEnabled $true
Set-ContentFilterConfig -InternalMailEnabled $false
Set-ContentFilterConfig -SCLDeleteEnabled $true -SCLDeleteThreshold 9 -SCLRejectEnabled $true -SCLRejectThreshold 8 -SCLQuarantineEnabled $true -SCLQuarantineThreshold 7
Set-ContentFilterConfig -RejectionResponse "Your message was rejected because it appears to be SPAM."
Set-ContentFilterConfig -OutlookEmailPostmarkValidationEnabled $true
Set-OrganizationConfig -SCLJunkThreshold 5
寄件者信譽
Set-SenderReputationConfig -Enabled $true
Set-SenderReputationConfig -ExternalMailEnabled $true
Set-SenderReputationConfig -InternalMailEnabled $false
Set-SenderReputationConfig -SrlBlockThreshold 6 -SenderBlockingPeriod 36
反垃圾聯盟
Add-IPBlockListProvider -Name zen.spamhaus.org -LookupDomain zen.spamhaus.org -AnyMatch $True -Enabled $True -RejectionResponse “Your IP is blacklisted! http://www.spamhaus.org“
- Apr 15 Wed 2015 10:52
Exchange 2013 群組,外部無法發信進入問題。
在Exchange 2013裡面,通訊群組,預設的設定只能允許內部人員發入
如果允許外部人員發入,要改選如下,就可以正常發入。