even better and simpler parser.
[apps/madmutt.git] / lib-mime / mime.c
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 const char MimeSpecials[] = "@.,;:<>[]\\\"()?/= \t";
21
22 const char *BodyTypes[] = {
23     "x-unknown",
24     "audio",
25     "application",
26     "image",
27     "message",
28     "model",
29     "multipart",
30     "text",
31     "video",
32 };
33
34 const char *BodyEncodings[] = {
35     "x-unknown",
36     "7bit",
37     "8bit",
38     "quoted-printable",
39     "base64",
40     "binary",
41     "x-uuencoded",
42 };
43