[][src]Struct isilon::models::ClusterEmailSettings

pub struct ClusterEmailSettings {
    pub batch_mode: String,
    pub mail_relay: String,
    pub mail_sender: String,
    pub mail_subject: String,
    pub smtp_auth_passwd_set: bool,
    pub smtp_auth_security: String,
    pub smtp_auth_username: String,
    pub smtp_port: i32,
    pub use_smtp_auth: bool,
    pub user_template: Option<String>,
}

Fields

batch_mode: String

This setting determines how notifications will be batched together to be sent by email. 'none' means each notification will be sent separately. 'severity' means notifications of the same severity will be sent together. 'category' means notifications of the same category will be sent together. 'all' means all notifications will be batched together and sent in a single email.

mail_relay: String

The address of the SMTP server to be used for relaying the notification messages. An SMTP server is required in order to send notifications. If this string is empty, no emails will be sent.

mail_sender: String

The full email address that will appear as the sender of notification messages.

mail_subject: String

The subject line for notification messages from this cluster.

smtp_auth_passwd_set: bool

Indicates if an SMTP authentication password is set.

smtp_auth_security: String

The type of secure communication protocol to use if SMTP is being used. If 'none', plain text will be used, if 'starttls', the encrypted STARTTLS protocol will be used.

smtp_auth_username: String

Username to authenticate with if SMTP authentication is being used.

smtp_port: i32

The port on the SMTP server to be used for relaying the notification messages.

use_smtp_auth: bool

If true, this cluster will send SMTP authentication credentials to the SMTP relay server in order to send its notification emails. If false, the cluster will attempt to send its notification emails without authentication.

user_template: Option<String>

Location of a custom template file that can be used to specify the layout of the notification emails.

Trait Implementations

impl Debug for ClusterEmailSettings[src]

impl Serialize for ClusterEmailSettings[src]

impl<'de> Deserialize<'de> for ClusterEmailSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T