this repo has no description

next rfc

+2 -1
AGENT.md
···
2. DONE Add a `Jmap.Api` module to make JMAP API requests over HTTP and parse the
responses into the `Jmap.Types`. Used `Cohttp_lwt_unix` for the HTTP library.
Note: There is a compilation issue with the current ezjsonm package on the system.
-
3. Add a `Jmap_mail` implementation that follows `spec/rfc8621.txt`
+
3. Add a `Jmap_mail` implementation that follows `spec/rfc8621.txt` as part of a
+
separate package. It should use the Jmap module and extend it appropriately.
+7
lib/dune
···
(library
(name jmap)
(public_name jmap)
+
(modules jmap)
(libraries str ezjsonm ptime cohttp cohttp-lwt-unix uri lwt))
+
+
(library
+
(name jmap_mail)
+
(public_name jmap.mail)
+
(modules jmap_mail)
+
(libraries jmap))
lib/jmap_mail.ml

This is a binary file and will not be displayed.

lib/jmap_mail.mli

This is a binary file and will not be displayed.