1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module dedicated to the sendmail sender configuration.
//!
//! This module contains the configuration specific to the sendmail
//! sender.

use process::Cmd;
use serde::{Deserialize, Serialize};

/// The sendmail sender configuration.
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct SendmailConfig {
    /// The sendmail command.
    pub cmd: Cmd,
}