Normalmente, o produto antispam que você pode alugar fará o check-up DNSBL / RBL para você. Assim, você altera o MX para apontá-los e eles encaminham o email para você após a verificação do antispam (e você geralmente bloqueia o encaminhamento do SMTP no roteador para permitir somente que o antispam de IP externo seja permitido). Você pode economizar em largura de banda se receber muito spam & a carga da administração.
Você também pode inserir a verificação DNSBL em seu Exchange se tiver um servidor Edge para essa parte. Um exemplo abaixo:
& $env:ExchangeInstallPath\Scripts\Install-AntiSpamAgents.ps1
Restart-Service MSExchangeTransport
Add-IPBlockListProvider -name bl.spamcop.net -lookupdomain bl.spamcop.net
Add-IPBlockListProvider -name zen.spamhaus.org -lookupdomain zen.spamhaus.org
Set-SenderIDConfig -SpoofedDomainAction Delete
Set-SenderReputationConfig -SenderBlockingEnabled $true -SrlBlockThreshold 6 -SenderBlockingPeriod 36 Set-SenderFilterConfig -BlankSenderBlockingEnabled $true
Set-ContentFilterConfig -SCLQuarantineThreshold 6 Set-ContentFilterConfig -SCLDeleteEnabled $true Set-ContentFilterConfig -SCLQuarantineEnabled $true -QuarantineMailbox [email protected] Set-ContentFilterConfig -SCLRejectEnabled $false
This script installs the anti-spam agents, adds in some basic
DNSBL's, turns off email rejection and quarantines all mail instead,
deletes email from domains that are spoofed, blocks mail with blank
sender info.
From
http://jjstellato.blogspot.ca/2013/01/exchange-2013-enable-antispam-and.html
Connection filtering is an anti-spam feature in Microsoft Exchange
Server 2013 that allows or blocks email based on the message source.
Connection filtering is performed by the Connection Filtering agent
that's available only on Edge Transport servers. The Connection
Filtering agent relies on the IP address of the connecting mail server
to determine what action, if any, to take on an inbound message.
From :
https://technet.microsoft.com/en-us/library/bb124320(v=exchg.150).aspx
Para sua pergunta, é bom o suficiente, pois você pode fazer o mesmo checkup de um produto antispam alugado (mas precisa ajustá-lo conforme necessário e precisa de um servidor de borda para o Exchange 2013)