SYNOPSIS |
#include <dkim.h>
unsigned int dkim_sig_getflags(
DKIM_SIGINFO *sig
);
Retrieve the flags stored for a specific signature.
|
DESCRIPTION |
|
---|
ARGUMENTS |
Argument | Description |
sig |
Signature-specific handle.
|
|
RETURN VALUE |
The value returned is a bitwise-OR of the following constants:
Flag Name | Description |
DKIM_SIGFLAG_IGNORE |
The signature has been flagged to be ignored by a prior call
to dkim_sig_ignore().
|
DKIM_SIGFLAG_PROCESSED |
The signature has had DNS validation attempted.
|
DKIM_SIGFLAG_PASSED |
DNS validation succeeded.
|
|
NOTES |
|