mrmime
Mrmime.MessageID
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 : Format.formatter -> t -> unit
val equal : t -> t -> bool
module Decoder : sig ... end
val of_string : string -> (t, [> `Msg of string ]) result
of_string x tries to parse x as a Message-ID.
of_string x
x
module Encoder : sig ... end