"Log key words that trigger rejects." |
Post Reply |
Author | |
CyberBob
Groupie Joined: 26 January 2005 Status: Offline Points: 43 |
Post Options
Thanks(0)
Posted: 22 November 2004 at 11:30am |
When you are looking at the "Keywords filter" tab and check the box "Log key words that trigger rejects." What log is created to track these? Where is it at? |
|
LogSat
Admin Group Joined: 25 January 2005 Location: United States Status: Offline Points: 4104 |
Post Options
Thanks(0)
|
Bob,In the SpamFilter ISP's activity log each time an email is blcoked because of a keyword, the log will record something like the following:09/08/04 00:02:35:032 -- (416) Found Keywords: [get your free]In the quarantine database, the tblQuarantine table will also log the keywords in the RejectDetails column. You can find all emails blcoked due to keywords by executing the following query:SELECT *
FROM tblQuarantine
WHERE (RejectID = 13)Roberto F.
LogSat Software
|
|
CyberBob
Groupie Joined: 26 January 2005 Status: Offline Points: 43 |
Post Options
Thanks(0)
|
Thanks but let me specify better. Whether the box "Log key words that trigger rejects" is checked or not I see no change in the logs? What does the check box do? I have a report setup to track error code 13 and I see the keywords that trigger the rejects if the box is checked or unchecked? So it made me wonder if there was a separate log file being created? **** Here's my thought. IF we could track ONLY the keywords that trigger rejects then we could create a script to compare that to our keyword list. I could then see which keywords are the most effective and keep my keyword list lean and concise. That is why I requested one other time to remove Blocked Attachments from error code 13. I know I could run a script to look for blocked keywords also but it would be cleaner to have a list that is only keywords. That's my two cents for now. Ideas are welcomed! Bob |
|
Ric Marques
Guest Group |
Post Options
Thanks(0)
|
Since that feature isn't in the program now, you could try: SELECT rejectdetails, This will return all keywords found, with the corresponding number of times found in the quarantine database in descending order, but will exclude the 'prohibited attachment' records. Will this get you closer to what you want? -Ric |
|
CyberBob
Groupie Joined: 26 January 2005 Status: Offline Points: 43 |
Post Options
Thanks(0)
|
Thanks I'll try this and get back to you!
|
|
CyberBob
Groupie Joined: 26 January 2005 Status: Offline Points: 43 |
Post Options
Thanks(0)
|
You were close. Here is the report I was looking for. You may have to change the table name from dbo_tblQuarantine to tblQuarantine depending on your configuration. SELECT DISTINCTROW Count(dbo_tblQuarantine.RejectDetails) AS CountOfRejectDetails, dbo_tblQuarantine.RejectDetails |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
This page was generated in 0.170 seconds.