mrmime
Mrmime.MessageID
mrmime.prettym
type domain = [
| `Literal of string
| `Domain of string list
]
type t = Emile.local * domain
module Domain : sig ... end
An RFC 822 domain can be constructed in two ways. This construction differs from Address.domain. We can construct a common domain via:
Address.domain
val pp : t Fmt.t
val equal : t -> t -> bool
module Decoder : sig ... end
val of_string : string -> (t, [> Rresult.R.msg ]) result
of_string x tries to parse x as a Message-ID.
of_string x
x
module Encoder : sig ... end