Skip to content

Commit 8355736

Browse files
committed
[new release] colombe, sendmail and sendmail-lwt (0.7.0)
CHANGES: - Implement the `LOGIN` mechanism when we want to send an email (@dinosaure, issued by @aronerben & @mabiede, mirage/colombe#60, mirage/colombe#61) - Update the codebase with `ocamlformat` (@dinosaure, mirage/colombe#62, mirage/colombe#64)
1 parent db38a40 commit 8355736

File tree

3 files changed

+112
-0
lines changed
  • packages
    • colombe/colombe.0.7.0
    • sendmail/sendmail.0.7.0
    • sendmail-lwt/sendmail-lwt.0.7.0

3 files changed

+112
-0
lines changed

packages/colombe/colombe.0.7.0/opam

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
license: "MIT"
3+
authors: [ "Charles-Edouard Lecat" "Romain Calascibetta <[email protected]>" ]
4+
maintainer: [ "Charles-Edouard Lecat" "Romain Calascibetta <[email protected]>" ]
5+
homepage: "https://github.com/mirage/colombe"
6+
bug-reports: "https://github.com/mirage/colombe/issues"
7+
dev-repo: "git+https://github.com/mirage/colombe.git"
8+
synopsis: "SMTP protocol in OCaml"
9+
doc: "https://mirage.github.io/colombe/"
10+
description: """SMTP protocol according RFC5321 without extension."""
11+
12+
build: [
13+
[ "dune" "build" "-p" name "-j" jobs ]
14+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
15+
]
16+
17+
depends: [
18+
"ocaml" {>= "4.03.0"}
19+
"dune" {>= "2.0.0"}
20+
"fmt" {>= "0.8.9"}
21+
"ipaddr" {>= "3.0.0"}
22+
"angstrom" {>= "0.14.0"}
23+
"ocaml-syntax-shims"
24+
"alcotest" {with-test}
25+
"crowbar" {>= "0.2" & with-test}
26+
]
27+
depopts: [ "emile" ]
28+
conflicts: [ "emile" {< "0.8"} ]
29+
url {
30+
src:
31+
"https://github.com/mirage/colombe/releases/download/v0.7.0/colombe-0.7.0.tbz"
32+
checksum: [
33+
"sha256=6dcf2b125140de0ac956b6930226b2546be53bb33248783270e477d5463b58e6"
34+
"sha512=c1db3b96657be97469627b6e1bf7d9ddcd088957056d8aea1c8a0cad0750a37de9749dafa7479c86d1f6a92fd660a1a8f6fca6fa8a48a4e2c75ebc48edb910c3"
35+
]
36+
}
37+
x-commit-hash: "c1e6e62c8036c8c9bb9ef9be8950db18fe114076"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
license: "MIT"
3+
authors: [ "Charles-Edouard Lecat" "Romain Calascibetta <[email protected]>" ]
4+
maintainer: [ "Charles-Edouard Lecat" "Romain Calascibetta <[email protected]>" ]
5+
homepage: "https://github.com/mirage/colombe"
6+
bug-reports: "https://github.com/mirage/colombe/issues"
7+
dev-repo: "git+https://github.com/mirage/colombe.git"
8+
doc: "https://mirage.github.io/colombe/"
9+
synopsis: "Implementation of the sendmail command over LWT"
10+
description: """A library to be able to send an email with LWT and TLS."""
11+
12+
build: [
13+
[ "dune" "build" "-p" name "-j" jobs ]
14+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
15+
]
16+
17+
depends: [
18+
"ocaml" {>= "4.03.0"}
19+
"dune" {>= "2.0"}
20+
"sendmail" {= version}
21+
"domain-name"
22+
"lwt"
23+
"tls" {>= "0.13.0"}
24+
"x509" {>= "0.12.0"}
25+
"alcotest" {with-test}
26+
]
27+
url {
28+
src:
29+
"https://github.com/mirage/colombe/releases/download/v0.7.0/colombe-0.7.0.tbz"
30+
checksum: [
31+
"sha256=6dcf2b125140de0ac956b6930226b2546be53bb33248783270e477d5463b58e6"
32+
"sha512=c1db3b96657be97469627b6e1bf7d9ddcd088957056d8aea1c8a0cad0750a37de9749dafa7479c86d1f6a92fd660a1a8f6fca6fa8a48a4e2c75ebc48edb910c3"
33+
]
34+
}
35+
x-commit-hash: "c1e6e62c8036c8c9bb9ef9be8950db18fe114076"

packages/sendmail/sendmail.0.7.0/opam

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
license: "MIT"
3+
authors: [ "Charles-Edouard Lecat" "Romain Calascibetta <[email protected]>" ]
4+
maintainer: [ "Charles-Edouard Lecat" "Romain Calascibetta <[email protected]>" ]
5+
homepage: "https://github.com/mirage/colombe"
6+
bug-reports: "https://github.com/mirage/colombe/issues"
7+
dev-repo: "git+https://github.com/mirage/colombe.git"
8+
doc: "https://mirage.github.io/colombe/"
9+
synopsis: "Implementation of the sendmail command"
10+
description: """A library to be able to send an email."""
11+
12+
build: [
13+
[ "dune" "build" "-p" name "-j" jobs ]
14+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
15+
]
16+
17+
depends: [
18+
"ocaml" {>= "4.03.0"}
19+
"dune" {>= "2.0"}
20+
"colombe" {= version}
21+
"tls" {>= "0.13.0"}
22+
"base64" {>= "3.0.0"}
23+
"ke" {>= "0.4"}
24+
"logs"
25+
"rresult"
26+
"bigstringaf" {>= "0.2.0"}
27+
"emile" {>= "0.8" & with-test}
28+
"mrmime" {>= "0.3.2" & with-test}
29+
"cstruct" {>= "6.0.0"}
30+
"alcotest" {with-test}
31+
]
32+
url {
33+
src:
34+
"https://github.com/mirage/colombe/releases/download/v0.7.0/colombe-0.7.0.tbz"
35+
checksum: [
36+
"sha256=6dcf2b125140de0ac956b6930226b2546be53bb33248783270e477d5463b58e6"
37+
"sha512=c1db3b96657be97469627b6e1bf7d9ddcd088957056d8aea1c8a0cad0750a37de9749dafa7479c86d1f6a92fd660a1a8f6fca6fa8a48a4e2c75ebc48edb910c3"
38+
]
39+
}
40+
x-commit-hash: "c1e6e62c8036c8c9bb9ef9be8950db18fe114076"

0 commit comments

Comments
 (0)