896311727d449bfe250031f23f7c865f49dc3baa
[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 #define M_CM_REPLYING   (1<<8)  /* replying the message */
29
30
31 #define M_CM_DECODE_PGP   (1<<9)        /* used for decoding PGP messages */
32 #define M_CM_DECODE_SMIME (1<<10)       /* used for decoding S/MIME messages */
33 #define M_CM_DECODE_CRYPT  (M_CM_DECODE_PGP | M_CM_DECODE_SMIME)
34
35
36 #define M_CM_VERIFY     (1<<11) /* do signature verification */
37
38
39
40 int mutt_copy_hdr (FILE *, FILE *, long, long, int, const char *);
41
42 int mutt_copy_header (FILE *, HEADER *, FILE *, int, const char *);
43
44 int _mutt_copy_message (FILE * fpout,
45                         FILE * fpin,
46                         HEADER * hdr, BODY * body, int flags, int chflags);
47
48 int mutt_copy_message (FILE * fpout,
49                        CONTEXT * src, HEADER * hdr, int flags, int chflags);
50
51 int _mutt_append_message (CONTEXT * dest,
52                           FILE * fpin,
53                           CONTEXT * src,
54                           HEADER * hdr, BODY * body, int flags, int chflags);
55
56 int mutt_append_message (CONTEXT * dest,
57                          CONTEXT * src,
58                          HEADER * hdr, int cmflags, int chflags);