xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/maillog_client.h (revision 33881f779a77dce6440bdc44610d94de75bebefe)
1 /*	$NetBSD: maillog_client.h,v 1.2 2020/03/18 19:05:16 christos Exp $	*/
2 
3 #ifndef _MAILLOG_CLIENT_H_INCLUDED_
4 #define _MAILLOG_CLIENT_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	maillog_client 3h
9 /* SUMMARY
10 /*	choose between syslog client and postlog client
11 /* SYNOPSIS
12 /*	#include <maillog_client.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * External interface.
18   */
19 #define MAILLOG_CLIENT_FLAG_NONE		(0)
20 #define MAILLOG_CLIENT_FLAG_LOGWRITER_FALLBACK	(1<<0)
21 
22 extern void maillog_client_init(const char *, int);
23 
24 /* LICENSE
25 /* .ad
26 /* .fi
27 /*	The Secure Mailer license must be distributed with this software.
28 /* AUTHOR(S)
29 /*	Wietse Venema
30 /*	Google, Inc.
31 /*	111 8th Avenue
32 /*	New York, NY 10011, USA
33 /*--*/
34 
35 #endif
36