No empty .Rs/.Re
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / mbox_conf.h
blob1520f3eb622bc00d62f6c3d6a8efb8e6fd5473f3
1 /* $NetBSD$ */
3 #ifndef _MBOX_CONF_H_INCLUDED_
4 #define _MBOX_CONF_H_INCLUDED_
6 /*++
7 /* NAME
8 /* mbox_conf 3h
9 /* SUMMARY
10 /* mailbox lock configuration
11 /* SYNOPSIS
12 /* #include <mbox_conf.h>
13 /* DESCRIPTION
14 /* .nf
17 * Utility library.
19 #include <argv.h>
22 * External interface.
24 #define MBOX_FLOCK_LOCK (1<<0)
25 #define MBOX_FCNTL_LOCK (1<<1)
26 #define MBOX_DOT_LOCK (1<<2)
27 #define MBOX_DOT_LOCK_MAY_FAIL (1<<3) /* XXX internal only */
29 extern int mbox_lock_mask(const char *);
30 extern ARGV *mbox_lock_names(void);
32 /* LICENSE
33 /* .ad
34 /* .fi
35 /* The Secure Mailer license must be distributed with this software.
36 /* AUTHOR(S)
37 /* Wietse Venema
38 /* IBM T.J. Watson Research
39 /* P.O. Box 704
40 /* Yorktown Heights, NY 10598, USA
41 /*--*/
43 #endif