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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
use std::borrow::Cow;
use crate::mime::make_boundary;
use super::Header;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct MessageId<'x> {
pub id: Vec<Cow<'x, str>>,
}
impl<'x> MessageId<'x> {
pub fn new(id: impl Into<Cow<'x, str>>) -> Self {
Self {
id: vec![id.into()],
}
}
pub fn new_list<T, U>(ids: T) -> Self
where
T: Iterator<Item = U>,
U: Into<Cow<'x, str>>,
{
Self {
id: ids.map(|s| s.into()).collect(),
}
}
}
impl<'x> From<&'x str> for MessageId<'x> {
fn from(value: &'x str) -> Self {
Self::new(value)
}
}
impl<'x> From<String> for MessageId<'x> {
fn from(value: String) -> Self {
Self::new(value)
}
}
impl<'x> From<&[&'x str]> for MessageId<'x> {
fn from(value: &[&'x str]) -> Self {
MessageId {
id: value.iter().map(|&s| s.into()).collect(),
}
}
}
impl<'x> From<&'x [String]> for MessageId<'x> {
fn from(value: &'x [String]) -> Self {
MessageId {
id: value.iter().map(|s| s.into()).collect(),
}
}
}
impl<'x, T> From<Vec<T>> for MessageId<'x>
where
T: Into<Cow<'x, str>>,
{
fn from(value: Vec<T>) -> Self {
MessageId {
id: value.into_iter().map(|s| s.into()).collect(),
}
}
}
pub fn generate_message_id_header(mut output: impl std::io::Write) -> std::io::Result<()> {
output.write_all(b"<")?;
output.write_all(make_boundary(".").as_bytes())?;
output.write_all(b"@")?;
output.write_all(
gethostname::gethostname()
.to_str()
.unwrap_or("localhost")
.as_bytes(),
)?;
output.write_all(b">")
}
impl<'x> Header for MessageId<'x> {
fn write_header(
&self,
mut output: impl std::io::Write,
mut bytes_written: usize,
) -> std::io::Result<usize> {
for (pos, id) in self.id.iter().enumerate() {
if pos > 0 {
if bytes_written + id.len() + 2 >= 76 {
output.write_all(b"\r\n\t")?;
bytes_written = 1;
} else {
output.write_all(b" ")?;
bytes_written += 1;
}
}
output.write_all(b"<")?;
output.write_all(id.as_bytes())?;
output.write_all(b">")?;
bytes_written += id.len() + 2;
}
if bytes_written > 0 {
output.write_all(b"\r\n")?;
}
Ok(0)
}
}