tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
more
anil.recoil.org
2 months ago
6aa74b6f
62f7fbfa
0/1
build.yml
failed
2m 29s
+42
1 changed file
expand all
collapse all
unified
split
packages
imapd
imapd.dev
opam
+42
packages/imapd/imapd.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "IMAP4rev2 server implemented in OCaml with Eio"
3
3
+
description:
4
4
+
"A modular IMAP4rev2 server (RFC 9051) implemented in OCaml using Eio for networking. Features pluggable storage backends (Memory, Maildir) and PAM authentication."
5
5
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
6
6
+
authors: ["Anil Madhavapeddy"]
7
7
+
license: "ISC"
8
8
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-imap"
9
9
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-imap/issues"
10
10
+
depends: [
11
11
+
"dune" {>= "3.20"}
12
12
+
"ocaml" {>= "5.1.0"}
13
13
+
"menhir" {>= "20230608"}
14
14
+
"eio" {>= "1.0"}
15
15
+
"eio_main" {>= "1.0"}
16
16
+
"tls-eio" {>= "1.0"}
17
17
+
"tls" {>= "1.0"}
18
18
+
"faraday" {>= "0.8"}
19
19
+
"cmdliner" {>= "1.2.0"}
20
20
+
"conf-libpam" {build}
21
21
+
"odoc" {with-doc}
22
22
+
"alcotest" {with-test & >= "1.7.0"}
23
23
+
]
24
24
+
build: [
25
25
+
["dune" "subst"] {dev}
26
26
+
[
27
27
+
"dune"
28
28
+
"build"
29
29
+
"-p"
30
30
+
name
31
31
+
"-j"
32
32
+
jobs
33
33
+
"@install"
34
34
+
"@runtest" {with-test}
35
35
+
"@doc" {with-doc}
36
36
+
]
37
37
+
]
38
38
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-imap.git"
39
39
+
url {
40
40
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-imap.git#main"
41
41
+
}
42
42
+
x-maintenance-intent: ["(latest)"]