this repo has no description

agent

Changed files
+8 -1
+8 -1
AGENT.md
···
from a `JMAP_API_TOKEN` env variable and connect to the Fastmail endpoint
at https://api.fastmail.com/jmap/session and list the last 100 email with
subjects and sender details to stdout.
-
7. Examine the implementation of fastmail-list as well as the JMAP specs,
+
7. DONE Examine the implementation of fastmail-list as well as the JMAP specs,
and add better typed handling of string responses such as "urn:ietf:params:jmap:mail".
Add these to either `Jmap_mail` or Jmap modules as appropriate.
+
8. Move some of the debug print messages into a debug logging mode, and ensure
+
that sensitive API tokens are never printed but redacted instead.
+
Modify the fastmail-list binary to optionally list only unread messages, and
+
also list the JMAP labels associated with each message.
+
9. Read the JMAP crash course at https://jmap.io/crash-course.html and especially
+
the bit about result references. Modify the OCaml interfaces appropriately from
+
what you learn here.