sig
type raw =
Rfc2047.raw =
QuotedPrintable of string
| Base64 of MrMime_base64.Decoder.result
type unstructured =
[ `CR of int
| `CRLF
| `Encoded of string * MrMime_header.raw
| `LF of int
| `Text of string
| `WSP ] list
type phrase_or_msg_id =
[ `MsgID of MrMime_msgID.msg_id
| `Phrase of
[ `Dot
| `Encoded of string * MrMime_header.raw
| `Word of [ `Atom of string | `String of string ] ] list ]
type field = Rfc5322.field
module Map :
sig
type key = String.t
type 'a t = 'a Map.Make(String).t
val empty : 'a t
val is_empty : 'a t -> bool
val mem : key -> 'a t -> bool
val add : key -> 'a -> 'a t -> 'a t
val singleton : key -> 'a -> 'a t
val remove : key -> 'a t -> 'a t
val merge :
(key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
val union : (key -> 'a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a t
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val for_all : (key -> 'a -> bool) -> 'a t -> bool
val exists : (key -> 'a -> bool) -> 'a t -> bool
val filter : (key -> 'a -> bool) -> 'a t -> 'a t
val partition : (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
val cardinal : 'a t -> int
val bindings : 'a t -> (key * 'a) list
val min_binding : 'a t -> key * 'a
val max_binding : 'a t -> key * 'a
val choose : 'a t -> key * 'a
val split : key -> 'a t -> 'a t * 'a option * 'a t
val find : key -> 'a t -> 'a
val map : ('a -> 'b) -> 'a t -> 'b t
val mapi : (key -> 'a -> 'b) -> 'a t -> 'b t
end
type header = {
date : MrMime_date.date option;
from : MrMime_address.mailbox list;
sender : MrMime_address.mailbox option;
reply_to : MrMime_address.address list;
to' : MrMime_address.address list;
cc : MrMime_address.address list;
bcc : MrMime_address.address list;
subject : MrMime_header.unstructured option;
msg_id : MrMime_msgID.msg_id option;
in_reply_to : MrMime_header.phrase_or_msg_id list;
references : MrMime_header.phrase_or_msg_id list;
comments : MrMime_header.unstructured list;
keywords : MrMime_address.phrase list list;
resents : MrMime_resent.resent list;
traces : MrMime_trace.trace list;
fields : MrMime_header.unstructured list MrMime_header.Map.t;
unsafe : MrMime_header.unstructured list MrMime_header.Map.t;
skip : string list;
}
val pp_raw : Format.formatter -> MrMime_header.raw -> unit
val pp_unstructured :
Format.formatter -> MrMime_header.unstructured -> unit
val pp_phrase_or_msg_id :
Format.formatter -> MrMime_header.phrase_or_msg_id -> unit
val pp_field : Format.formatter -> MrMime_header.field -> unit
val pp : Format.formatter -> MrMime_header.header -> unit
module Encoder :
sig
val w_unstructured :
(MrMime_header.unstructured,
([> `Partial of Bytes.t * int * int * (int -> 'a) ] as 'a)
Encoder.partial)
Wrap.k1
val w_field :
([ `Bcc of Rfc5322.address list
| `Cc of Rfc5322.address list
| `Comments of Rfc5322.unstructured
| `Date of Rfc5322.date
| `Field of string * Rfc5322.unstructured
| `From of Rfc5322.mailbox list
| `InReplyTo of Rfc5322.phrase_or_msg_id list
| `Keywords of Rfc5322.phrase list
| `MessageID of Rfc822.msg_id
| `References of Rfc5322.phrase_or_msg_id list
| `ReplyTo of Rfc5322.address list
| `Sender of Rfc5322.mailbox
| `Skip of string
| `Subject of Rfc5322.unstructured
| `To of Rfc5322.address list
| `Unsafe of string * Rfc5322.unstructured ],
([> `Partial of Bytes.t * int * int * (int -> 'a) ] as 'a)
Encoder.partial)
Encoder.k1
val w_header :
(MrMime_header.header,
([> `Partial of Bytes.t * int * int * (int -> 'a) ] as 'a)
Encoder.partial)
Encoder.k1
end
module Decoder :
sig
val header :
([> MrMime_header.field ] as 'a) list ->
(MrMime_header.header * 'a list) MrMime_parser.t
end
val to_string : MrMime_header.header -> string
val of_string :
?chunk:int ->
string -> (MrMime_header.header * [> MrMime_header.field ] list) option
val of_string_raw :
?chunk:int ->
string ->
int ->
int ->
((MrMime_header.header * [> MrMime_header.field ] list) * int) option
val equal : MrMime_header.header -> MrMime_header.header -> bool
end