Exchange Server 2007: Managing And Filtering Anti-Spam Agent Logs
Posted by Bharat Suneja at 9:11 AM

Additional agent log configuration parameters in SP1
Exchange Server 2007 RTM: In the RTM version, there's only one configuration option for the agent log - that to enable or disable it.
Exchange Server 2007 SP1: Additional parameters to control the max directory size, file size and age of agent logs added.
1) Enable/Disable agent log: Boolean value - TRUE/FALSE
2) Max directory size: In bytes. If not specified, the default is 250 Mb or 262144000 bytes.
3) Max file size: If not specified, the default is 10 Mb or 10485760 bytes.
4) Max age: If not specified, the default is 30 days.
The agent log configuration parameters can be controlled by editing the EdgeTransport.exe.config file, located in \Exchange Server\Bin folder on Edge and Hub Transport servers.
To disable agent logging, insert the following key under <appsettings></appsettings> in the config file:
<add key="AgentLogEnabled" value="FALSE" />
In the following example, we modify max directory size to 500 Mb, file size to 20 Mb, and age to 60 days, by creating new keys in EdgeTransport.exe.config:<add key="AgentLogMaxDirectorySize" value="524288000" />
<add key="AgentLogMaxFileSize" value="20971520" />
<add key="AgentLogMaxAge" value="60.00:00:00" />
Get-AgentLog -location "Z:\AntiSpam Agent Logs"
Here's what an entry in the agent log looks like - note the different fields and their values:Timestamp : 4/16/2007 12:39:49 AM
SessionId : 08C948C83FB951AC
IPAddress : 72.46.133.113
MessageId :
P1FromAddress : ret@noncornelan.com
P2FromAddresses : {}
Recipients : {foo@yourdomain.com}
Agent : Connection Filtering Agent
Event : OnRcptCommand
Action : RejectCommand
SmtpResponse : 550 5.7.1 Recipient not authorized, your IP has been found on a block list
Reason : BlockListProvider
ReasonData : Spamhaus SBL-XBL
Diagnostics :
As seen in the above output, the logs provide adequate information for reporting on anti-spam activity, as well as for troubleshooting anti-spam issues like messages not being received/wrongly filtered out.
Getting to know the agent logs will make troubleshooting such issues much easier.
By default, the Get-AgentLog command returns all the entries in the agent logs. It can be constrained to a particular date and time - the recommended way to perform most agent log searches, unless you want to immerse yourself in 30 days (or 250 Mb) of anti-spam goodness! This is done using the -StartDate and -EndDate parameters:
Get-AgentLog -StartDate "4/16/2007" -EndDate "4/17/2007"
You can also constrain it further by adding time of the day:
Get-AgentLog -StartDate "4/17/2007 8:00 AM" -EndDate "4/17/2007 2:00 PM"
Though the Get-AgentLog command only takes these 3 parameters - location, StartDate, and EndDate, you can further filter the logs using most of its logged fields.
To filter the log to show messages to a particular recipient:
Get-AgentLog -StartDate "4/16/2007" -EndDate "4/17/2007" | where {$_.recipients -like "foo@yourdomain.com"}
To search for messages from a particular sender:Get-AgentLog -StartDate "4/16/2007" -EndDate "4/17/2007" | where {$_.P1FromAddress -like "aqe@easymoney2u.com" -or $_.P2FromAddresses -like "aqe@easymoney2u.com"}
To search for messages from a particular domain:Get-AgentLog -StartDate "4/16/2007" -EndDate "4/17/2007" | where {$_.P1FromAddress -like "*somedomain.com" -or $_.P2FromAddress -like "*somedomain.com"}
To filter by the anti-spam agent that acted on a message, e.g. Connection Filtering Agent:Get-AgentLog -StartDate "4/15/2007" -EndDate "4/17/2007" | where {$_.Agent -eq "Connection Filtering Agent"}
Similarly, you can filter by other agents that write to the agent logs: 1) Content Filter Agent 2) SenderID agent 3) Sender Filter agent 4) Recipient Filter agent and 5) Edge Rules agent.To filter agent logs by the sending host's IP address, use the following command:
Get-AgentLog -StartDate "4/15/2007" -EndDate "4/17/2007" | where {$_.IPAddress -eq "72.46.133.113"}
The reason field in each log entry specifies the reason supplied by the anti-spam agent that takes the action. For instance, as seen in the agent log entry shown earlier in this article, the agent that acted on the message is the Connection Filtering Agent, the reason is BlockListProvider (i.e. "RBL" or "Real-time Block List", known as IP Block Lists in Exchange Server 2007). The ReasonData field gives you the name of the IP Block List Provider, as configured in Exchange. In the above agent log entry, it is "Spamhaus SBL-XBL". To constrain the search for messages blocked by IP Block List Providers: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 Povider:Get-AgentLog -StartDate "4/15/2007" -EndDate "4/17/2007" | where {$_.ReasonData -eq "Spamhaus SBL-XBL"}
For messages scanned by the Content Filter Agent, the Reason field contains details like SCLAtOrAboveDeleteThreshold, SCLAtOrAboveRejectThreshold, etc. The ReasonData field contains the SCL value assigned to the message. To get a list of messages above the SCLDeleteThreshold, use the following command:Get-AgentLog -StartDate "4/15/2007" -EndDate "4/17/2007" | where {$_.reason -eq "SCLAtOrAboveDeleteThreshold"}
As shown in the above examples, you can use the Get-AgentLog command and pipe the data to filter it based on the fields logged. You can get more details about agent logs - including the fields logged, from the Managing Agent Logging section in Exchange Server 2007 documentation.
2/9/2008: Added sidebar about additional configuration parameters available in SP1.
Labels: Administration, Anti-Spam, Exchange Server 2007, IMF

Exchangepedia Blog is read by visitors from all 50 US States and 150 countries world-wide

10 Comments:
Hi,
please, do you know, what does it mean "LocalBlockList" as Reason in Get-AgentLog cmdlet result?
You'll see the Reason field with value "LocalBlockList" if the Connection Filtering Agent blocks a message from a host that's listed on the IP Block List. The ReasonData field tells you if the IP was listed manually by the admin, or if the Sender Reputation agent added it.
Bharat
IS there a way to increase the size of the log folder for the Agent logs? 250mb only gives me about 2.5 days worth of historical data and thats just not enough.
Thanks
Chris Mace
No. From the above post:
There's only one configuration option for the agent log - that to enable or disable it.
Chris,
Update to my previous response: it seems additional configuration parameters were indeed added in Exchange Server 2007 SP1. The post has been modified to reflect that.
Thanks for asking this - prompted me to look, and correct the post. :)
Thanks to the helpful folks in the Exchange team for pointing me in the right direction: How to Manage Agent Log Output.
HI ,
could you pls tel me where can I find a complete list of all the values that can populate the "reason" field in the agent logs? Am a log analyst and this info is realy crucial for my analysis.
Thanks
Yuvika
Hi,
I have changed the AgentLogMaxDirectorySize and restarted the Transport service but this has no effect. Even after rebooting the server the log dir cannot grow larger than 250M.
I followed all steps in http://technet.microsoft.com/en-us/library/bb691337.aspx but no good.
Hi,
why do i find entries in the log that look like this:
2009-04-02T00:00:54.046Z,,,,,,,,ulh@mydomain.com,,,,,,,,
Filtering gets quite difficult ....
Thanks
Hi, great blog, I've learned a lot from it. I have a question if you have a moment to help me out.
When I run Get-AgentLog, most of the time the IPAddress I see is an internal IP, 192.168.2.2, which is the internal IP of my ISA server. Does this mean that the IP Block list isn't able to see the actual IP that the email is coming from? How do I check the real IP?
Here's a sample:
Timestamp : 6/15/2009 11:00:59 AM
SessionId : 08CBB9AFB27BF9C7
IPAddress : 192.168.2.2
MessageId : PVMDZ89057.7D3ACDC@c-76-100-61-54.hsd1.va.comcast.net
P1FromAddress : user@mydomain.com
P2FromAddresses : {user@mydomain.com}
Recipients : {user@mydomain.com}
Agent : Content Filter Agent
Event : OnEndOfData
Action : RejectMessage
SmtpResponse : 550 5.7.1 Message rejected as spam by Content Filtering.
Reason : SclAtOrAboveRejectThreshold
ReasonData : 8
Diagnostics : DV:3.3.7813.600;SV:3.3.7815.344
I figured it out. My ISA servers are set to replace the SMTP IP in the headers to it's own IP so that the Hub Transport talks to the external server through ISA. Thus Exchange never sees the original IP and can't filter against it.
I'll probably have to put another box in front of the ISA servers to do IP filtering based on Blocklists or put something on the ISA servers to do the filtering there.
But I noticed that when I look through the logs some DO have the external IP. But that is only maybe 100 messages a day which is like like 0.01% of incoming mail... I wonder how these few messages manage to keep their external IP in their headers...
Post a Comment
Links to this post:
Create a Link
<< Home