~ubuntu-branches/ubuntu/trusty/postfix/trusty-proposed

« back to all changes in this revision

Viewing changes to src/global/qmgr_user.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2005-02-27 09:33:07 UTC
  • Revision ID: james.westby@ubuntu.com-20050227093307-cn789t27ibnlh6tf
Tags: upstream-2.1.5
ImportĀ upstreamĀ versionĀ 2.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _QMGR_USER_H_INCLUDED_
 
2
#define _QMGR_USER_H_INCLUDED_
 
3
 
 
4
/*++
 
5
/* NAME
 
6
/*      qmgr_user 3h
 
7
/* SUMMARY
 
8
/*      qmgr user interface codes
 
9
/* SYNOPSIS
 
10
/*      #include <qmgr_user.h>
 
11
/* DESCRIPTION
 
12
/* .nf
 
13
 
 
14
 /*
 
15
  * Queue file read options. Flags 16- are reserved by qmgr.h.
 
16
  */
 
17
#define QMGR_READ_FLAG_NONE             0       /* No special features */
 
18
#define QMGR_READ_FLAG_MIXED_RCPT_OTHER (1<<0)  /* Mixed recipient/other */
 
19
 
 
20
#define QMGR_READ_FLAG_USER     (QMGR_READ_FLAG_MIXED_RCPT_OTHER)
 
21
 
 
22
 /*
 
23
  * Backwards compatibility.
 
24
  */
 
25
#define QMGR_READ_FLAG_DEFAULT  (QMGR_READ_FLAG_MIXED_RCPT_OTHER)
 
26
 
 
27
/* LICENSE
 
28
/* .ad
 
29
/* .fi
 
30
/*      The Secure Mailer license must be distributed with this software.
 
31
/* AUTHOR(S)
 
32
/*      Wietse Venema
 
33
/*      IBM T.J. Watson Research
 
34
/*      P.O. Box 704
 
35
/*      Yorktown Heights, NY 10598, USA
 
36
/*--*/
 
37
 
 
38
#endif