Step 4. Create a rule in FOPE that takes the action “Encrypt” on any message with the Header filed named “Sensitivity” set to “company-confidential” as shown below:
I suggest signing all macros so that you can protect your enterprise. Also, you will want to read: http://msdn.microsoft.com/en-us/library/ee814736.aspx to understand how to deploy the macro to the enterprise.
Fernando Lugão Veltem edited Revision 10. Comment: added toc
There is a mistake in the code portion (which is what makes this all work). They accidentally left out "application." preceding ActiveInspector. It should be as follows:
Sub setConfidential()
Application.ActiveInspector.CurrentItem.Sensitivity = olConfidential
MsgBox ("This message will be encrypted for any recipients outside this organization.")
End Sub