From 4c694d4500ea8d9d9fe0be7a37d71c6d8a898a3a Mon Sep 17 00:00:00 2001 From: JMARyA Date: Sun, 11 May 2025 08:22:39 +0200 Subject: [PATCH] add stalwart --- technology/applications/web/stalwart.md | 28 +++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 technology/applications/web/stalwart.md diff --git a/technology/applications/web/stalwart.md b/technology/applications/web/stalwart.md new file mode 100644 index 0000000..51b5284 --- /dev/null +++ b/technology/applications/web/stalwart.md @@ -0,0 +1,28 @@ +--- +obj: application +website: https://stalw.art +repo: https://github.com/stalwartlabs/mail-server +--- + +# Stalwart Mail +Stalwart Mail Server is an open-source mail server solution with JMAP, IMAP4, POP3, and SMTP support and a wide range of modern features. It is written in Rust and designed to be secure, fast, robust and scalable. + +## Compose +```yml +services: + mail-server: + ports: + - 443:443 + - 9683:8080 + - 25:25 + - 587:587 + - 465:465 + - 143:143 + - 993:993 + - 4190:4190 + - 110:110 + - 995:995 + volumes: + - /nvme/docker/system/stalwart/data:/opt/stalwart-mail + image: stalwartlabs/mail-server:latest +```