NeoMutt  2025-12-11-769-g906513
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mime.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_EMAIL_MIME_H
24#define MUTT_EMAIL_MIME_H
25
42
56
67
69#define MUTT_MIME_MAX_DEPTH 50
71#define MUTT_MIME_MAX_PARTS 500
72
73
74/* MIME encoding/decoding global vars */
75
76extern const int IndexHex[128];
77extern const char *const BodyTypes[];
78extern const char *const BodyEncodings[];
79extern const char MimeSpecials[];
80
82#define hexval(ch) IndexHex[(unsigned int) (ch)]
83
85#define is_multipart(body) \
86 (((body)->type == TYPE_MULTIPART) || \
87 (((body)->type == TYPE_MESSAGE) && ((body)->subtype) && \
88 ((strcasecmp((body)->subtype, "rfc822") == 0) || \
89 (strcasecmp((body)->subtype, "news") == 0) || \
90 (strcasecmp((body)->subtype, "global") == 0))))
91
93#define BODY_TYPE(body) \
94 ((body->type == TYPE_OTHER) && body->xtype ? body->xtype : BodyTypes[(body->type)])
95
97#define ENCODING(x) BodyEncodings[(x)]
98
99#endif /* MUTT_EMAIL_MIME_H */
const char MimeSpecials[]
Characters that need special treatment in MIME.
Definition mime.c:69
const char *const BodyTypes[]
Common MIME body types.
Definition mime.c:51
const int IndexHex[128]
Lookup table for ASCII hex digits.
Definition mime.c:35
const char *const BodyEncodings[]
Common MIME body encodings.
Definition mime.c:59
ContentEncoding
Content-Transfer-Encoding.
Definition mime.h:47
@ ENC_7BIT
7-bit text
Definition mime.h:49
@ ENC_UUENCODED
UUEncoded text.
Definition mime.h:54
@ ENC_OTHER
Encoding unknown.
Definition mime.h:48
@ ENC_BINARY
Binary.
Definition mime.h:53
@ ENC_BASE64
Base-64 encoded text.
Definition mime.h:52
@ ENC_8BIT
8-bit text
Definition mime.h:50
@ ENC_QUOTED_PRINTABLE
Quoted-printable text.
Definition mime.h:51
ContentType
Content-Type.
Definition mime.h:30
@ TYPE_AUDIO
Type: 'audio/*'.
Definition mime.h:32
@ TYPE_IMAGE
Type: 'image/*'.
Definition mime.h:34
@ TYPE_OTHER
Unknown Content-Type.
Definition mime.h:31
@ TYPE_MESSAGE
Type: 'message/*'.
Definition mime.h:35
@ TYPE_MODEL
Type: 'model/*'.
Definition mime.h:36
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition mime.h:37
@ TYPE_APPLICATION
Type: 'application/*'.
Definition mime.h:33
@ TYPE_TEXT
Type: 'text/*'.
Definition mime.h:38
@ TYPE_ANY
Type: '' or '.'.
Definition mime.h:40
@ TYPE_VIDEO
Type: 'video/*'.
Definition mime.h:39
ContentDisposition
Content-Disposition values.
Definition mime.h:61
@ DISP_ATTACH
Content is attached.
Definition mime.h:63
@ DISP_INLINE
Content is inline.
Definition mime.h:62
@ DISP_NONE
No preferred disposition.
Definition mime.h:65
@ DISP_FORM_DATA
Content is form-data.
Definition mime.h:64