SYNOPSIS |
#include <dkim.h>
dkim_policy_t dkim_policy(
DKIM *dkim,
bool *test,
bool *susp
);
Retrieve and evaluate the sender signing policy (SSP) for a message.
|
DESCRIPTION |
Called When |
dkim_policy() is called after
dkim_eom() when dkim is a
verifying handle, i.e. one returned by an earlier call to
dkim_verify(). |
|
---|
ARGUMENTS |
Argument | Description |
dkim |
Message-specific handle, returned by
dkim_verify().
|
test |
A pointer to boolean that is set to be either TRUE (if the policy
indicates the domain is using DKIM in a test mode), or FALSE otherwise.
|
susp |
A pointer to boolean that is set to be either TRUE (if the policy
indicates the message is suspicious), or FALSE otherwise.
|
|
NOTES |
- It is an error to call this function with a handle that was created
using dkim_sign().
|