| SYNOPSIS | 
#include <libmilter/mfapi.h>
int smfi_addrcpt_par(
	SMFICTX *ctx,
	char *rcpt,
	char *args
);
Add a recipient for the current message including ESMTP arguments. | 
|---|
| DESCRIPTION | 
| Called When | Called only from xxfi_eom. |  
| Effects | Add a recipient to the message envelope. |  | 
|---|
| ARGUMENTS | 
    | Argument | Description | 
|---|
 | ctx | Opaque context structure. |  | rcpt | The new recipient's address. |  | args | The new recipient's ESMTP parameters. |  | 
|---|
| RETURN VALUES | smfi_addrcpt_par will fail and return MI_FAILURE if: Otherwise, it will return MI_SUCCESS.rcpt is NULL.
    Adding recipients in the current connection state is invalid.
    A network error occurs.
    SMFIF_ADDRCPT_PAR is not set._PAR
 | 
| NOTES | A filter which calls smfi_addrcpt_par must have set the
SMFIF_ADDRCPT_PAR flag. |