Answered by:
Email blocked by RBL

Question
-
We are using MS Exchange 2007 and setup IP Block List Providers. May I know how to check any email blocked by RBL ?
Thanks.
Thursday, November 17, 2011 2:19 AM
Answers
-
On Thu, 17 Nov 2011 02:19:08 +0000, redhotchan wrote:>We are using MS Exchange 2007 and setup IP Block List Providers. May I know how to check any email blocked by RBL ?Have a look at the agent logs. You can use the get-agentlog cmdlet orprocess them yourself (they're just CSV files).---Rich MatheisenMCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP- Proposed as answer by Terence Yu Friday, November 18, 2011 2:18 AM
- Marked as answer by Terence Yu Friday, November 25, 2011 8:32 AM
Thursday, November 17, 2011 4:30 AM -
Please find the below command
Get-AgentLog -StartDate “4/15/2007″ -EndDate “4/17/2007″ | where {$_.Reason -eq “BlockListProvider”}
To get a list of all IP addresses blocked by IP Block List Providers:
Get-AgentLog -StartDate “12/21/2007″ | where {$_.Reason -eq “BlockListProvider”} | ft Timestamp,IPAddress,ReasonData
You can also look for messages blocked by a particular IP Block List Provider:
Get-AgentLog -StartDate “4/15/2007″ -EndDate “4/17/2007″ | where {$_.ReasonData -eq “Spamhaus SBL-XBL”}
agent logs default location (\Exchange Server\TransportRoles\Logs\AgentLog)
Please find the below URL for your referance
http://exchangepedia.com/2007/04/exchange-server-2007-managing-and-filtering-anti-spam-agent-logs.html
GirishP
- Proposed as answer by Terence Yu Friday, November 18, 2011 2:18 AM
- Marked as answer by Terence Yu Friday, November 25, 2011 8:32 AM
Thursday, November 17, 2011 2:48 PM
All replies
-
On Thu, 17 Nov 2011 02:19:08 +0000, redhotchan wrote:>We are using MS Exchange 2007 and setup IP Block List Providers. May I know how to check any email blocked by RBL ?Have a look at the agent logs. You can use the get-agentlog cmdlet orprocess them yourself (they're just CSV files).---Rich MatheisenMCSE+I, Exchange MVP
--- Rich Matheisen MCSE+I, Exchange MVP- Proposed as answer by Terence Yu Friday, November 18, 2011 2:18 AM
- Marked as answer by Terence Yu Friday, November 25, 2011 8:32 AM
Thursday, November 17, 2011 4:30 AM -
Please find the below command
Get-AgentLog -StartDate “4/15/2007″ -EndDate “4/17/2007″ | where {$_.Reason -eq “BlockListProvider”}
To get a list of all IP addresses blocked by IP Block List Providers:
Get-AgentLog -StartDate “12/21/2007″ | where {$_.Reason -eq “BlockListProvider”} | ft Timestamp,IPAddress,ReasonData
You can also look for messages blocked by a particular IP Block List Provider:
Get-AgentLog -StartDate “4/15/2007″ -EndDate “4/17/2007″ | where {$_.ReasonData -eq “Spamhaus SBL-XBL”}
agent logs default location (\Exchange Server\TransportRoles\Logs\AgentLog)
Please find the below URL for your referance
http://exchangepedia.com/2007/04/exchange-server-2007-managing-and-filtering-anti-spam-agent-logs.html
GirishP
- Proposed as answer by Terence Yu Friday, November 18, 2011 2:18 AM
- Marked as answer by Terence Yu Friday, November 25, 2011 8:32 AM
Thursday, November 17, 2011 2:48 PM