Skip to main content

Config

Struct Config 

Source
pub struct Config {
    pub target_emails: Vec<String>,
    pub webhook_url: String,
    pub smtp_bind_address: String,
    pub smtp_port: u16,
    pub health_check_bind_address: String,
    pub health_check_port: u16,
    pub header_prefixes: Vec<String>,
    pub webhook_timeout_secs: u64,
    pub webhook_max_retries: u32,
    pub circuit_breaker_threshold: u32,
    pub circuit_breaker_reset_secs: u64,
}
Expand description

Holds the application’s runtime configuration settings.

These settings are typically loaded from environment variables via from_env.

Fields§

§target_emails: Vec<String>

The list of email addresses MailLaser will accept mail for. (Required: MAIL_LASER_TARGET_EMAILS, comma-separated)

§webhook_url: String

The URL where the extracted email payload will be sent via POST request. (Required: MAIL_LASER_WEBHOOK_URL)

§smtp_bind_address: String

The IP address the SMTP server should listen on. (Optional: MAIL_LASER_BIND_ADDRESS, Default: “0.0.0.0”)

§smtp_port: u16

The network port the SMTP server should listen on. (Optional: MAIL_LASER_PORT, Default: 2525)

§health_check_bind_address: String

The IP address the health check HTTP server should listen on. (Optional: MAIL_LASER_HEALTH_BIND_ADDRESS, Default: “0.0.0.0”)

§health_check_port: u16

The network port the health check HTTP server should listen on. (Optional: MAIL_LASER_HEALTH_PORT, Default: 8080)

§header_prefixes: Vec<String>

Header name prefixes to match and forward in the webhook payload. (Optional: MAIL_LASER_HEADER_PREFIX, comma-separated, Default: empty)

§webhook_timeout_secs: u64

Webhook request timeout in seconds. (Optional: MAIL_LASER_WEBHOOK_TIMEOUT, Default: 30)

§webhook_max_retries: u32

Max retry attempts on webhook delivery failure. (Optional: MAIL_LASER_WEBHOOK_MAX_RETRIES, Default: 3)

§circuit_breaker_threshold: u32

Consecutive failures required to open the circuit breaker. (Optional: MAIL_LASER_CIRCUIT_BREAKER_THRESHOLD, Default: 5)

§circuit_breaker_reset_secs: u64

Seconds before a tripped circuit breaker half-opens. (Optional: MAIL_LASER_CIRCUIT_BREAKER_RESET, Default: 60)

Implementations§

Source§

impl Config

Source

pub fn from_env() -> Result<Self>

Loads configuration settings from environment variables.

Reads variables prefixed with MAIL_LASER_. Supports loading from a .env file if present. Provides default values for bind addresses and ports if not specified. Logs the configuration values being used.

§Errors

Returns an Err if:

  • Required environment variables (MAIL_LASER_TARGET_EMAILS, MAIL_LASER_WEBHOOK_URL) are missing or MAIL_LASER_TARGET_EMAILS is empty/invalid.
  • Optional port variables (MAIL_LASER_PORT, MAIL_LASER_HEALTH_PORT) are set but cannot be parsed as u16.

Trait Implementations§

Source§

impl Clone for Config

Source§

fn clone(&self) -> Config

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Config

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Config

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Config

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for Config

§

impl RefUnwindSafe for Config

§

impl Send for Config

§

impl Sync for Config

§

impl Unpin for Config

§

impl UnwindSafe for Config

Blanket Implementations§

Source§

impl<T> ActonMessage for T
where T: Any + Send + Sync + Debug + DynClone + 'static,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Implementation of as_any for the blanket impl.

Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Implementation of as_any_mut for the blanket impl.

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,