03acd9830df3a82dd81230cf490f11cba1789faf
[apps/madmutt.git] / lib-mime / mime.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 /*
21  * Copyright notice from original mutt:
22  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
23  *
24  * This file is part of mutt-ng, see http://www.muttng.org/.
25  * It's licensed under the GNU General Public License,
26  * please see the file GPL in the top level source directory.
27  */
28
29 #ifndef MUTT_LIB_MIME_MIME_H
30 #define MUTT_LIB_MIME_MIME_H
31
32 /* Content-Type */
33 enum {
34     TYPEOTHER,
35     TYPEAUDIO,
36     TYPEAPPLICATION,
37     TYPEIMAGE,
38     TYPEMESSAGE,
39     TYPEMODEL,
40     TYPEMULTIPART,
41     TYPETEXT,
42     TYPEVIDEO,
43     TYPEANY
44 };
45
46 /* Content-Transfer-Encoding */
47 enum {
48     ENCOTHER,
49     ENC7BIT,
50     ENC8BIT,
51     ENCQUOTEDPRINTABLE,
52     ENCBASE64,
53     ENCBINARY,
54     ENCUUENCODED
55 };
56
57 /* Content-Disposition values */
58 enum {
59     DISPINLINE,
60     DISPATTACH,
61     DISPFORMDATA
62 };
63
64 typedef struct parameter {
65     char *attribute;
66     char *value;
67     struct parameter *next;
68 } PARAMETER;
69
70 extern const char MimeSpecials[];
71 extern const char *BodyTypes[];
72 extern const char *BodyEncodings[];
73
74 /* MIME encoding/decoding global vars */
75
76 #define is_multipart(x) \
77     ((x)->type == TYPEMULTIPART \
78      || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \
79                                       || !strcasecmp((x)->subtype, "news"))))
80 #define TYPE(X) ((X->type == TYPEOTHER) && (X->xtype != NULL) ? X->xtype : BodyTypes[(X->type)])
81 #define ENCODING(X) BodyEncodings[(X)]
82
83 /****************************************************************************/
84 /* RFC 2231                                                                 */
85 /*             MIME Parameter Value and Encoded Word Extensions:            */
86 /*               Character Sets, Languages, and Continuations               */
87 /****************************************************************************/
88
89 int  rfc2231_encode_string(char **);
90 void rfc2231_decode_parameters(PARAMETER **);
91
92 #endif /* MUTT_LIB_MIME_MIME_H */