cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1612
Views
0
Helpful
2
Replies

encrypted emails

Dears,

I need to create a rule that qurantine encrypted emails to a quarantine folder,

what is the best practice to do it?

I have found a message filter

if (encrypted) {          bcc ('legaldept@example.domain');          bounce();       } 

how can I apply it in the incoming and outgoing messages?

2 Replies 2

Use "Filters" options in CLI

Juraj Ban
Level 1
Level 1

Do you want to quarantine all protected e-mail messages or you want to quarantine by specific gruop?

You can quarantine also with content filter:

Condition:

Attachment protection:

Action:

Quarantine: Send message to quarantine: (chose quarantine).

Or if you want block all, then you can take CLI and filters.

Filters -> new

Qprotected:

if (encrypted) {

quarantine ("Policy");

}

.