xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/mail_addr.h (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1*41fbaed0Stron /*	$NetBSD: mail_addr.h,v 1.1.1.1 2009/06/23 10:08:46 tron Exp $	*/
2*41fbaed0Stron 
3*41fbaed0Stron #ifndef _MAIL_ADDR_H_INCLUDED_
4*41fbaed0Stron #define _MAIL_ADDR_H_INCLUDED_
5*41fbaed0Stron 
6*41fbaed0Stron /*++
7*41fbaed0Stron /* NAME
8*41fbaed0Stron /*	mail_addr 3h
9*41fbaed0Stron /* SUMMARY
10*41fbaed0Stron /*	pre-defined mail addresses
11*41fbaed0Stron /* SYNOPSIS
12*41fbaed0Stron /*	#include <mail_addr.h>
13*41fbaed0Stron /* DESCRIPTION
14*41fbaed0Stron /* .nf
15*41fbaed0Stron 
16*41fbaed0Stron  /*
17*41fbaed0Stron   * Pre-defined addresses.
18*41fbaed0Stron   */
19*41fbaed0Stron #define MAIL_ADDR_POSTMASTER	"postmaster"
20*41fbaed0Stron #define MAIL_ADDR_MAIL_DAEMON	"MAILER-DAEMON"
21*41fbaed0Stron #define MAIL_ADDR_EMPTY		""
22*41fbaed0Stron 
23*41fbaed0Stron extern const char *mail_addr_double_bounce(void);
24*41fbaed0Stron extern const char *mail_addr_postmaster(void);
25*41fbaed0Stron extern const char *mail_addr_mail_daemon(void);
26*41fbaed0Stron 
27*41fbaed0Stron /* LICENSE
28*41fbaed0Stron /* .ad
29*41fbaed0Stron /* .fi
30*41fbaed0Stron /*	The Secure Mailer license must be distributed with this software.
31*41fbaed0Stron /* AUTHOR(S)
32*41fbaed0Stron /*	Wietse Venema
33*41fbaed0Stron /*	IBM T.J. Watson Research
34*41fbaed0Stron /*	P.O. Box 704
35*41fbaed0Stron /*	Yorktown Heights, NY 10598, USA
36*41fbaed0Stron /*--*/
37*41fbaed0Stron 
38*41fbaed0Stron #endif
39