cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
612
Views
0
Helpful
1
Replies

Notify when an email has > X recipients

Ray Mitchell
Level 1
Level 1

On Cisco Ironport - Is there a way to send a notification when a single email has more than "X" recipients?

1 Reply 1

Libin Varghese
Cisco Employee
Cisco Employee

Hi Ray,

You can create a message filter based on the requirement from the command line of the appliance using command "filters" -> "new"

count_recipients:
if (rcpt-count > 100)
{
notify('email@domain.com');
}
.

The rcpt-count rule compares the number of recipients of a message against an integer value.

Thanks

Libin Varghese