2 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
34 /* Content-Transfer-Encoding */
46 /* Content-Disposition values */
52 DISPNONE /* no preferred disposition */
55 /* MIME encoding/decoding global vars */
58 extern int Index_hex[];
59 extern int Index_64[];
60 extern char B64Chars[];
63 #define hexval(c) Index_hex[(unsigned int)(c)]
64 #define base64val(c) Index_64[(unsigned int)(c)]
66 #define is_multipart(x) \
67 ((x)->type == TYPEMULTIPART \
68 || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \
69 || !strcasecmp((x)->subtype, "news"))))
71 extern const char *BodyTypes[];
72 extern const char *BodyEncodings[];
74 #define TYPE(X) ((X->type == TYPEOTHER) && (X->xtype != NULL) ? X->xtype : BodyTypes[(X->type)])
75 #define ENCODING(X) BodyEncodings[(X)]
77 /* other MIME-related global variables */
79 extern char MimeSpecials[];