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 #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,
47                         BODY *body,
48                         int flags,
49                         int chflags);
50
51 int mutt_copy_message (FILE *fpout,
52                        CONTEXT *src,
53                        HEADER *hdr,
54                        int flags,
55                        int chflags);
56
57 int _mutt_append_message (CONTEXT *dest,
58                           FILE *fpin,
59                           CONTEXT *src,
60                           HEADER *hdr,
61                           BODY *body,
62                           int flags,
63                           int chflags);
64
65 int mutt_append_message (CONTEXT *dest,
66                          CONTEXT *src,
67                          HEADER *hdr,
68                          int cmflags,
69                          int chflags);