more work in the lib-mime. begin to "rewr^H^Had" the code in rfc2231.c
[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 /* MIME encoding/decoding global vars */
71
72 #define is_multipart(x) \
73     ((x)->type == TYPEMULTIPART \
74      || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \
75                                       || !strcasecmp((x)->subtype, "news"))))
76
77 extern const char *BodyTypes[];
78 extern const char *BodyEncodings[];
79
80 #define TYPE(X) ((X->type == TYPEOTHER) && (X->xtype != NULL) ? X->xtype : BodyTypes[(X->type)])
81 #define ENCODING(X) BodyEncodings[(X)]
82
83 /* other MIME-related global variables */
84 #ifndef _SENDLIB_C
85 extern char MimeSpecials[];
86 #endif
87
88 void rfc2231_decode_parameters (PARAMETER **);
89 int rfc2231_encode_string (char **);
90
91 #endif /* MUTT_LIB_MIME_MIME_H */