Postfix3.3.1
verp_sender.h
[詳解]
1 #ifndef _VERP_SENDER_H_INCLUDED_
2 #define _VERP_SENDER_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* verp_sender 3h
7 /* SUMMARY
8 /* encode recipient into sender, VERP style
9 /* SYNOPSIS
10 /* #include "verp_sender.h"
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15  * Utility library.
16  */
17 #include <vstring.h>
18 
19  /*
20  * Global library.
21  */
22 #include <recipient_list.h>
23 
24  /*
25  * External interface.
26  */
27 extern VSTRING *verp_sender(VSTRING *, const char *, const char *, const RECIPIENT *);
28 extern const char *verp_delims_verify(const char *);
29 
30 /* LICENSE
31 /* .ad
32 /* .fi
33 /* The Secure Mailer license must be distributed with this software.
34 /* AUTHOR(S)
35 /* Wietse Venema
36 /* IBM T.J. Watson Research
37 /* P.O. Box 704
38 /* Yorktown Heights, NY 10598, USA
39 /*--*/
40 
41 #endif
const char * verp_delims_verify(const char *)
Definition: verp_sender.c:104
VSTRING * verp_sender(VSTRING *, const char *, const char *, const RECIPIENT *)
Definition: verp_sender.c:67