Content Filtering

rohit

Verified User
Joined
Mar 20, 2007
Messages
198
Location
Melbourne
Hi All,

We are looking for way to be able to filter content for all incoming + outgoing emails. What is the best way to go about doing that. I know there is already a Filter option in DA, but how exactly it works. We need to be able to send all the filtered / blocked emails to a specified email address

Just came across this http://www.spamtitan.com/. Has anyone used them before?

What about these options? (defang, Anomy)

We need this for a corporate client so the system / solution has to be very good.

Thanks in advance.
 
Last edited:
Does anyone have any experience in doing this or even could guide me towards the right direction?

I know there are solutions like MessageLabs and MailGuard, that do some content / mail spam / AV filtering, but these are paid solutions and charge per account.

hope to get some help.

Thanks in advance.
 
Look at /etc/system_filter.exim

Code:
if $message_body contains: Your content
then
  unseen deliver [email protected]
endif

This will Bcc any email that contains the text "Your content" to [email protected]. It also delivers it to the original recipient.
 
Back
Top