package async_smtp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. version : Async_ssl.Std.Ssl.Version.t option;
  2. options : Async_ssl.Std.Ssl.Opt.t list option;
  3. name : string option;
  4. allowed_ciphers : [ `Secure | `Openssl_default | `Only of string list ];
  5. ca_file : string option;
  6. ca_path : string option;
  7. mode : [ `Required | `Always_try | `If_available ];
  8. certificate_mode : [ `Ignore | `Verify ];
}
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val certificate_mode : t -> [ `Ignore | `Verify ]
val mode : t -> [ `Required | `Always_try | `If_available ]
val ca_path : t -> string option
val ca_file : t -> string option
val allowed_ciphers : t -> [ `Secure | `Openssl_default | `Only of string list ]
val name : t -> string option
val options : t -> Async_ssl.Std.Ssl.Opt.t list option
val version : t -> Async_ssl.Std.Ssl.Version.t option
module Fields : sig ... end
val default : t