The opam repository for my Advent of Agentic Humps 2025

more

+42
+42
packages/imapd/imapd.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "IMAP4rev2 server implemented in OCaml with Eio" 3 + description: 4 + "A modular IMAP4rev2 server (RFC 9051) implemented in OCaml using Eio for networking. Features pluggable storage backends (Memory, Maildir) and PAM authentication." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-imap" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-imap/issues" 10 + depends: [ 11 + "dune" {>= "3.20"} 12 + "ocaml" {>= "5.1.0"} 13 + "menhir" {>= "20230608"} 14 + "eio" {>= "1.0"} 15 + "eio_main" {>= "1.0"} 16 + "tls-eio" {>= "1.0"} 17 + "tls" {>= "1.0"} 18 + "faraday" {>= "0.8"} 19 + "cmdliner" {>= "1.2.0"} 20 + "conf-libpam" {build} 21 + "odoc" {with-doc} 22 + "alcotest" {with-test & >= "1.7.0"} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-imap.git" 39 + url { 40 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-imap.git#main" 41 + } 42 + x-maintenance-intent: ["(latest)"]