1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//! Message MIME types
//!
//! This module contains MIME types for message protocol data.
/// `message/bhttp`
pub const BHTTP: &str = "message/bhttp";
/// `message/cpim`
pub const CPIM: &str = "message/cpim";
/// `message/delivery-status`
pub const DELIVERY_STATUS: &str = "message/delivery-status";
/// `message/disposition-notification`
///
/// Common file extensions: `.disposition-notification`
pub const DISPOSITION_NOTIFICATION: &str = "message/disposition-notification";
/// `message/external-body`
pub const EXTERNAL_BODY: &str = "message/external-body";
/// `message/feedback-report`
pub const FEEDBACK_REPORT: &str = "message/feedback-report";
/// `message/global`
///
/// Common file extensions: `.u8msg`
pub const GLOBAL: &str = "message/global";
/// `message/global-delivery-status`
///
/// Common file extensions: `.u8dsn`
pub const GLOBAL_DELIVERY_STATUS: &str = "message/global-delivery-status";
/// `message/global-disposition-notification`
///
/// Common file extensions: `.u8mdn`
pub const GLOBAL_DISPOSITION_NOTIFICATION: &str = "message/global-disposition-notification";
/// `message/global-headers`
///
/// Common file extensions: `.u8hdr`
pub const GLOBAL_HEADERS: &str = "message/global-headers";
/// `message/http`
pub const HTTP: &str = "message/http";
/// `message/imdn+xml`
pub const IMDN_PLUS_XML: &str = "message/imdn+xml";
/// `message/mls`
pub const MLS: &str = "message/mls";
/// `message/news`
pub const NEWS: &str = "message/news";
/// `message/ohttp-req`
pub const OHTTP_REQ: &str = "message/ohttp-req";
/// `message/ohttp-res`
pub const OHTTP_RES: &str = "message/ohttp-res";
/// `message/partial`
pub const PARTIAL: &str = "message/partial";
/// `message/rfc822`
///
/// Common file extensions: `.eml`, `.mime`, `.mht`, `.mhtml`
pub const RFC822: &str = "message/rfc822";
/// `message/s-http`
pub const S_HTTP: &str = "message/s-http";
/// `message/sip`
pub const SIP: &str = "message/sip";
/// `message/sipfrag`
pub const SIPFRAG: &str = "message/sipfrag";
/// `message/tracking-status`
pub const TRACKING_STATUS: &str = "message/tracking-status";
/// `message/vnd.si.simp`
pub const VND_SI_SIMP: &str = "message/vnd.si.simp";
/// `message/vnd.wfa.wsc`
///
/// Common file extensions: `.wsc`
pub const VND_WFA_WSC: &str = "message/vnd.wfa.wsc";