module Tls : sig ... endmodule Where_to_listen : sig ... endtype t = {spool_dir : string; |
tmp_dir : string option; |
where_to_listen : Where_to_listen.t list; |
max_concurrent_send_jobs : int; |
max_concurrent_receive_jobs_per_port : int; |
rpc_port : int; |
malformed_emails : [ `Reject | `Wrap ]; |
max_message_size : Core.Byte_units.t; |
tls_options : Tls.t option; |
client : Client_config.t; |
}include sig ... endval t_of_sexp : Sexplib.Sexp.t ‑> tval sexp_of_t : t ‑> Sexplib.Sexp.tval client : t ‑> Client_config.tval max_message_size : t ‑> Core.Byte_units.tval malformed_emails : t ‑> [ `Reject | `Wrap ]val rpc_port : t ‑> intval max_concurrent_receive_jobs_per_port : t ‑> intval max_concurrent_send_jobs : t ‑> intval where_to_listen : t ‑> Where_to_listen.t listval tmp_dir : t ‑> string optionval spool_dir : t ‑> stringmodule Fields : sig ... endval load_exn : string ‑> t Async.Deferred.tval tmp_dir : t ‑> stringval empty : t