Module Async_smtp__.Server_config.Tls

type t = {
version : Async_ssl.Std.Ssl.Version.t option;
options : Async_ssl.Std.Ssl.Opt.t list option;
name : string option;
allowed_ciphers : [ `Secure | `Openssl_default | `Only of string list ];
crt_file : string;
key_file : string;
ca_file : string option;
ca_path : string option;
}
include sig ... end
val ca_path : t ‑> string option
val ca_file : t ‑> string option
val key_file : t ‑> string
val crt_file : t ‑> string
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 t_of_sexp : Base.Sexp.t ‑> t
val sexp_of_t : t ‑> Base.Sexp.t