Platform SDK: Exchange 2000 Server

IsAuthenticated Property

[This is preliminary documentation and subject to change.]

Indicates whether email digital signature matches from field. (Read-only)

[Visual Basic,VBScript]
Property IsAuthenticated As Boolean
[C++]
HRESULT IsAuthenticated(VARIANT_BOOL* varIsAuthenticated);
[IDL]
HRESULT IsAuthenticated([out, retval] VARIANT_BOOL* varIsAuthenticated);

Remarks

(Read-only)

When you write script or COM actions and conditions for an OnReceive transition, you need to be able to check the authenticity of received email. The workflow engine checks incoming email for:

Your script or COM actions and conditions can use the IsAuthenticated property to make decisions on how to handle incoming email. The IsAuthenticated property relates to the IsIntact, IsSigned, and IsTrustedSig properties. The workflow engine treats these properties hierarchically, so false values propagate downward through the hierarchy. For example, if 'IsSigned' is false, then the rest of the properties are false too. The following table shows the only possible combinations of values for these properties.

Property          
IsSigned True True True True False
IsIntact True True True False False
IsTrustedSig True True False False False
IsAuthenticated True False False False False