postie-0.6.0.2: SMTP server library to receive emails from within Haskell programs.
Safe HaskellNone
LanguageHaskell2010

Network.Mail.Postie.Settings

Synopsis

Documentation

data Settings Source #

Settings to configure posties behaviour.

Constructors

Settings 

Fields

Instances

Instances details
Default Settings Source # 
Instance details

Defined in Network.Mail.Postie.Settings

Methods

def :: Settings #

data TLSSettings Source #

Settings for TLS handling

Constructors

TLSSettings 

Fields

Instances

Instances details
Default TLSSettings Source # 
Instance details

Defined in Network.Mail.Postie.Settings

Methods

def :: TLSSettings #

data StartTLSPolicy Source #

Connection security policy, either via STARTTLS command or on connection initiation.

Constructors

AllowStartTLS

Allows clients to use STARTTLS command

DemandStartTLS

Client needs to send STARTTLS command before issuing a mail transaction

ConnectWithTLS

Negotiates a TSL context on connection startup.

def :: Default a => a #

The default value for this type.

reexport from Default class