cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1843
Views
5
Helpful
2
Replies

Test CLI Filters

lenne.dartalis
Level 1
Level 1

Hello Community,

I can't find the answer in existing topics, so i start a new discussion:

Creating filters on Ironport by CLI.

How is it possible to test the new filter? (without activating it into the production workflow)

(there is no "test" appliance, only production)

Thanks for your help.

Regards.

1 Accepted Solution

Accepted Solutions

You could test it using just the log entry action:

TestRule:

   if (body-contains('Company Confidential'))

   {

      log-entry('Message may have contained confidential information.');

   }

View solution in original post

2 Replies 2

You could test it using just the log entry action:

TestRule:

   if (body-contains('Company Confidential'))

   {

      log-entry('Message may have contained confidential information.');

   }

That's it!

Totally forgot that.

Thanks a lot.