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

« back to all changes in this revision

Viewing changes to src/global/mail_copy.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 _MAIL_COPY_H_INCLUDED_
 
2
#define _MAIL_COPY_H_INCLUDED_
 
3
 
 
4
/*++
 
5
/* NAME
 
6
/*      mail_copy 3h
 
7
/* SUMMARY
 
8
/*      copy message with extreme prejudice
 
9
/* SYNOPSIS
 
10
/*      #include <mail_copy.h>
 
11
/* DESCRIPTION
 
12
/* .nf
 
13
 
 
14
 /*
 
15
  * Utility library.
 
16
  */
 
17
#include <vstream.h>
 
18
#include <vstring.h>
 
19
 
 
20
 /*
 
21
  * External interface.
 
22
  */
 
23
extern int mail_copy(const char *, const char *, const char *,
 
24
                             VSTREAM *, VSTREAM *,
 
25
                             int, const char *, VSTRING *);
 
26
 
 
27
#define MAIL_COPY_QUOTE         (1<<0)  /* prepend > to From_ */
 
28
#define MAIL_COPY_TOFILE        (1<<1)  /* fsync, ftruncate() */
 
29
#define MAIL_COPY_FROM          (1<<2)  /* prepend From_ */
 
30
#define MAIL_COPY_DELIVERED     (1<<3)  /* prepend Delivered-To: */
 
31
#define MAIL_COPY_RETURN_PATH   (1<<4)  /* prepend Return-Path: */
 
32
#define MAIL_COPY_DOT           (1<<5)  /* escape dots - needed for bsmtp */
 
33
#define MAIL_COPY_BLANK         (1<<6)  /* append blank line */
 
34
#define MAIL_COPY_ORIG_RCPT     (1<<7)  /* prepend X-Original-To: */
 
35
#define MAIL_COPY_MBOX          (MAIL_COPY_FROM | MAIL_COPY_QUOTE | \
 
36
                                    MAIL_COPY_TOFILE | MAIL_COPY_DELIVERED | \
 
37
                                    MAIL_COPY_RETURN_PATH | MAIL_COPY_BLANK | \
 
38
                                        MAIL_COPY_ORIG_RCPT)
 
39
 
 
40
#define MAIL_COPY_NONE          0       /* all turned off */
 
41
 
 
42
#define MAIL_COPY_STAT_OK       0
 
43
#define MAIL_COPY_STAT_CORRUPT  (1<<0)
 
44
#define MAIL_COPY_STAT_READ     (1<<1)
 
45
#define MAIL_COPY_STAT_WRITE    (1<<2)
 
46
 
 
47
/* LICENSE
 
48
/* .ad
 
49
/* .fi
 
50
/*      The Secure Mailer license must be distributed with this software.
 
51
/* AUTHOR(S)
 
52
/*      Wietse Venema
 
53
/*      IBM T.J. Watson Research
 
54
/*      P.O. Box 704
 
55
/*      Yorktown Heights, NY 10598, USA
 
56
/*--*/
 
57
 
 
58
#endif