Filter Formula

The filter formula is a global filter applied to all emails before the Internal/ External user check. This can be useful in disabling the signature application for all emails.

This filter is a Notes Formula and is executed against the current email.


Calendar Requests

Disable the processing of all Calendar Requests.

  • Simple

@if(Form = 'Notice' | $NoteContainsIcal = '1';@False;@True)
  • With Flags for testing

@if(Form = 'Notice' | $NoteContainsIcal = '1';@Do(@SetField("CWFilter";"Y");@False);@Do(@SetField("CWFilter";"N");@True))

Message Recall

The formula below stops the application from processing Message Recall messages if the Unsign Emails option is used.

image-20250822-035233.png

If the emails are unsigned then the following error may appear on the server's console.

image-20250822-035246.png
@if(Form = 'Recall Request' ;@Do(@SetField("CWFilter";"Y");@False);@Do(@SetField("CWFilter";"N");@True))