Andreas Krennmair:
[apps/madmutt.git] / copy.h
1 /*
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */ 
18
19 /* flags to _mutt_copy_message */
20 #define M_CM_NOHEADER   1       /* don't copy the message header */
21 #define M_CM_PREFIX     (1<<1)  /* quote the message */
22 #define M_CM_DECODE     (1<<2)  /* decode the message body into text/plain */
23 #define M_CM_DISPLAY    (1<<3)  /* output is displayed to the user */
24 #define M_CM_UPDATE     (1<<4)  /* update structs on sync */
25 #define M_CM_WEED       (1<<5)  /* weed message/rfc822 attachment headers */
26 #define M_CM_CHARCONV   (1<<6)  /* perform character set conversions */
27 #define M_CM_PRINTING   (1<<7)  /* printing the message - display light */
28
29
30 #define M_CM_DECODE_PGP   (1<<8) /* used for decoding PGP messages */
31 #define M_CM_DECODE_SMIME (1<<9) /* used for decoding S/MIME messages */
32 #define M_CM_DECODE_CRYPT  (M_CM_DECODE_PGP | M_CM_DECODE_SMIME)
33
34
35 #define M_CM_VERIFY     (1<<10) /* do signature verification */
36
37
38
39 int mutt_copy_hdr (FILE *, FILE *, long, long, int, const char *);
40
41 int mutt_copy_header (FILE *, HEADER *, FILE *, int, const char *);
42
43 int _mutt_copy_message (FILE *fpout,
44                         FILE *fpin,
45                         HEADER *hdr,
46                         BODY *body,
47                         int flags,
48                         int chflags);
49
50 int mutt_copy_message (FILE *fpout,
51                        CONTEXT *src,
52                        HEADER *hdr,
53                        int flags,
54                        int chflags);
55
56 int _mutt_append_message (CONTEXT *dest,
57                           FILE *fpin,
58                           CONTEXT *src,
59                           HEADER *hdr,
60                           BODY *body,
61                           int flags,
62                           int chflags);
63
64 int mutt_append_message (CONTEXT *dest,
65                          CONTEXT *src,
66                          HEADER *hdr,
67                          int cmflags,
68                          int chflags);