this repo has no description

next rfc

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