package async_smtp

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Config.TlsSource

Sourcetype 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 ];
}
include Sexplib0.Sexpable.S with type t := t
Sourceval t_of_sexp : Sexplib0.Sexp.t -> t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval certificate_mode : t -> [ `Ignore | `Verify ]
Sourceval mode : t -> [ `Required | `Always_try | `If_available ]
Sourceval ca_path : t -> string option
Sourceval ca_file : t -> string option
Sourceval allowed_ciphers : t -> [ `Secure | `Openssl_default | `Only of string list ]
Sourceval name : t -> string option
Sourceval options : t -> Async_ssl.Std.Ssl.Opt.t list option
Sourceval version : t -> Async_ssl.Std.Ssl.Version.t option
Sourcemodule Fields : sig ... end
Sourceval default : t
OCaml

Innovation. Community. Security.