| SYNOPSIS | 
#include <dkim.h>
_Bool dkim_getpartial(
	DKIM *dkim
);
 | 
|---|
| DESCRIPTION | 
| Called When | dkim_getpartial() can be called at any time after
	a DKIM handle has been initialized by either
	dkim_sign() or
	dkim_verify(). |  | 
|---|
| ARGUMENTS |  | 
|---|
| RETURN VALUES | 
    | Value | Description | 
|---|
 | TRUE | The message-specific handle has been flagged to produce
	    a signature with an "l=" tag by a previous call to
	    dkim_setpartial(). |  | FALSE | The message-specific handle has been flagged to produce
	    a signature with an "l=" tag. |  | 
|---|
| NOTES | 
Regardless if the setting of this bit inside a message-specific
    handle, a signature with "l=" will be generated if the
    DKIM_LIBFLAGS_SIGNLEN flag was set on the library
    handle.
 |