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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
/*
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*/
use std::{
borrow::Cow,
fmt::{Debug, Display},
};
#[cfg(feature = "builder")]
use mail_builder::{
MessageBuilder,
headers::{HeaderType, address},
};
#[cfg(feature = "parser")]
use mail_parser::{HeaderName, HeaderValue};
use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt};
use crate::SmtpClient;
#[derive(Debug, Default, Clone)]
pub struct Message<'x> {
pub mail_from: Address<'x>,
pub rcpt_to: Vec<Address<'x>>,
pub body: Cow<'x, [u8]>,
}
#[derive(Debug, Default, Clone)]
pub struct Address<'x> {
pub email: Cow<'x, str>,
pub parameters: Parameters<'x>,
}
#[derive(Debug, Default, Clone)]
pub struct Parameters<'x> {
params: Vec<Parameter<'x>>,
}
#[derive(Debug, Default, Clone)]
pub struct Parameter<'x> {
key: Cow<'x, str>,
value: Option<Cow<'x, str>>,
}
impl<T: AsyncRead + AsyncWrite + Unpin> SmtpClient<T> {
/// Sends a message to the server.
pub async fn send<'x>(&mut self, message: impl IntoMessage<'x>) -> crate::Result<()> {
// Send mail-from
let message = message.into_message()?;
self.mail_from(
message.mail_from.email.as_ref(),
&message.mail_from.parameters,
)
.await?;
// Send rcpt-to
for rcpt in &message.rcpt_to {
self.rcpt_to(rcpt.email.as_ref(), &rcpt.parameters).await?;
}
// Send message
self.data(message.body.as_ref()).await
}
/// Sends a message to the server.
#[cfg(feature = "dkim")]
pub async fn send_signed<'x, V: mail_auth::common::crypto::SigningKey>(
&mut self,
message: impl IntoMessage<'x>,
signer: &mail_auth::dkim::DkimSigner<V, mail_auth::dkim::Done>,
) -> crate::Result<()> {
// Send mail-from
use mail_auth::common::headers::HeaderWriter;
let message = message.into_message()?;
self.mail_from(
message.mail_from.email.as_ref(),
&message.mail_from.parameters,
)
.await?;
// Send rcpt-to
for rcpt in &message.rcpt_to {
self.rcpt_to(rcpt.email.as_ref(), &rcpt.parameters).await?;
}
// Sign message
let signature = signer
.sign(message.body.as_ref())
.map_err(|_| crate::Error::MissingCredentials)?;
let mut signed_message = Vec::with_capacity(message.body.len() + 64);
signature.write_header(&mut signed_message);
signed_message.extend_from_slice(message.body.as_ref());
// Send message
self.data(&signed_message).await
}
pub async fn write_message(&mut self, message: &[u8]) -> tokio::io::Result<()> {
// Transparency procedure
let mut is_cr_or_lf = false;
// As per RFC 5322bis, section 2.3:
// CR and LF MUST only occur together as CRLF; they MUST NOT appear
// independently in the body.
// For this reason, we apply the transparency procedure when there is
// a CR or LF followed by a dot.
let mut last_pos = 0;
for (pos, byte) in message.iter().enumerate() {
if *byte == b'.' && is_cr_or_lf {
if let Some(bytes) = message.get(last_pos..pos) {
self.stream.write_all(bytes).await?;
self.stream.write_all(b".").await?;
last_pos = pos;
}
is_cr_or_lf = false;
} else {
is_cr_or_lf = *byte == b'\n' || *byte == b'\r';
}
}
if let Some(bytes) = message.get(last_pos..) {
self.stream.write_all(bytes).await?;
}
self.stream.write_all("\r\n.\r\n".as_bytes()).await?;
self.stream.flush().await
}
}
impl<'x> Message<'x> {
/// Create a new message
pub fn new<T, U, V>(from: T, to: U, body: V) -> Self
where
T: Into<Address<'x>>,
U: IntoIterator<Item = T>,
V: Into<Cow<'x, [u8]>>,
{
Message {
mail_from: from.into(),
rcpt_to: to.into_iter().map(Into::into).collect(),
body: body.into(),
}
}
/// Create a new empty message.
pub fn empty() -> Self {
Message {
mail_from: Address::default(),
rcpt_to: Vec::new(),
body: Default::default(),
}
}
/// Set the sender of the message.
pub fn from(mut self, address: impl Into<Address<'x>>) -> Self {
self.mail_from = address.into();
self
}
/// Add a message recipient.
pub fn to(mut self, address: impl Into<Address<'x>>) -> Self {
self.rcpt_to.push(address.into());
self
}
/// Set the message body.
pub fn body(mut self, body: impl Into<Cow<'x, [u8]>>) -> Self {
self.body = body.into();
self
}
}
impl<'x> From<&'x str> for Address<'x> {
fn from(email: &'x str) -> Self {
Address {
email: email.into(),
parameters: Parameters::default(),
}
}
}
impl From<String> for Address<'_> {
fn from(email: String) -> Self {
Address {
email: email.into(),
parameters: Parameters::default(),
}
}
}
impl<'x> Address<'x> {
pub fn new(email: impl Into<Cow<'x, str>>, parameters: Parameters<'x>) -> Self {
Address {
email: email.into(),
parameters,
}
}
}
impl<'x> Parameters<'x> {
pub fn new() -> Self {
Self { params: Vec::new() }
}
pub fn add(&mut self, param: impl Into<Parameter<'x>>) -> &mut Self {
self.params.push(param.into());
self
}
}
impl<'x> From<&'x str> for Parameter<'x> {
fn from(value: &'x str) -> Self {
Parameter {
key: value.into(),
value: None,
}
}
}
impl<'x> From<(&'x str, &'x str)> for Parameter<'x> {
fn from(value: (&'x str, &'x str)) -> Self {
Parameter {
key: value.0.into(),
value: Some(value.1.into()),
}
}
}
impl From<(String, String)> for Parameter<'_> {
fn from(value: (String, String)) -> Self {
Parameter {
key: value.0.into(),
value: Some(value.1.into()),
}
}
}
impl From<String> for Parameter<'_> {
fn from(value: String) -> Self {
Parameter {
key: value.into(),
value: None,
}
}
}
impl Display for Parameters<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if !self.params.is_empty() {
for param in &self.params {
f.write_str(" ")?;
Display::fmt(¶m, f)?;
}
}
Ok(())
}
}
impl Display for Parameter<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if let Some(value) = &self.value {
write!(f, "{}={}", self.key, value)
} else {
f.write_str(&self.key)
}
}
}
pub trait IntoMessage<'x> {
fn into_message(self) -> crate::Result<Message<'x>>;
}
impl<'x> IntoMessage<'x> for Message<'x> {
fn into_message(self) -> crate::Result<Message<'x>> {
Ok(self)
}
}
#[cfg(feature = "builder")]
impl<'x> IntoMessage<'x> for MessageBuilder<'_> {
fn into_message(self) -> crate::Result<Message<'x>> {
let mut mail_from = None;
let mut rcpt_to = std::collections::HashSet::new();
for (key, value) in self.headers.iter() {
if key.eq_ignore_ascii_case("from") {
if let HeaderType::Address(address::Address::Address(addr)) = value {
let email = addr.email.trim();
if !email.is_empty() {
mail_from = email.to_string().into();
}
}
} else if (key.eq_ignore_ascii_case("to")
|| key.eq_ignore_ascii_case("cc")
|| key.eq_ignore_ascii_case("bcc")) {
if let HeaderType::Address(addr) = value
{
match addr {
address::Address::Address(addr) => {
let email = addr.email.trim();
if !email.is_empty() {
rcpt_to.insert(email.to_string());
}
}
address::Address::Group(group) => {
for addr in &group.addresses {
if let address::Address::Address(addr) = addr {
let email = addr.email.trim();
if !email.is_empty() {
rcpt_to.insert(email.to_string());
}
}
}
}
address::Address::List(list) => {
for addr in list {
if let address::Address::Address(addr) = addr {
let email = addr.email.trim();
if !email.is_empty() {
rcpt_to.insert(email.to_string());
}
}
}
}
}
}}
}
if rcpt_to.is_empty() {
return Err(crate::Error::MissingRcptTo);
}
Ok(Message {
mail_from: mail_from.ok_or(crate::Error::MissingMailFrom)?.into(),
rcpt_to: rcpt_to
.into_iter()
.map(|email| Address {
email: email.into(),
parameters: Parameters::default(),
})
.collect(),
body: self.write_to_vec()?.into(),
})
}
}
#[cfg(feature = "parser")]
impl<'x> IntoMessage<'x> for mail_parser::Message<'x> {
fn into_message(self) -> crate::Result<Message<'x>> {
let mut mail_from = None;
let mut rcpt_to = std::collections::HashSet::new();
let find_address = |addr: &mail_parser::Addr| -> Option<String> {
addr.address
.as_ref()
.filter(|address| !address.trim().is_empty())
.map(|address| address.trim().to_string())
};
for header in self.headers() {
match &header.name {
HeaderName::From => match header.value() {
HeaderValue::Address(mail_parser::Address::List(addrs)) => {
if let Some(email) = addrs.iter().find_map(find_address) {
mail_from = email.to_string().into();
}
}
HeaderValue::Address(mail_parser::Address::Group(groups)) => {
if let Some(grps) = groups.first() {
if let Some(email) = grps.addresses.iter().find_map(find_address) {
mail_from = email.to_string().into();
}
}
}
_ => (),
},
HeaderName::To | HeaderName::Cc | HeaderName::Bcc => match header.value() {
HeaderValue::Address(mail_parser::Address::List(addrs)) => {
rcpt_to.extend(addrs.iter().filter_map(find_address));
}
HeaderValue::Address(mail_parser::Address::Group(grps)) => {
rcpt_to.extend(
grps.iter()
.flat_map(|grp| grp.addresses.iter())
.filter_map(find_address),
);
}
_ => (),
},
_ => (),
};
}
if rcpt_to.is_empty() {
return Err(crate::Error::MissingRcptTo);
}
Ok(Message {
mail_from: mail_from.ok_or(crate::Error::MissingMailFrom)?.into(),
rcpt_to: rcpt_to
.into_iter()
.map(|email| Address {
email: email.into(),
parameters: Parameters::default(),
})
.collect(),
body: self.raw_message,
})
}
}
|