Stalwart: Difference between revisions
No edit summary |
Add minimal config example |
||
Line 2: | Line 2: | ||
== Setup == | == Setup == | ||
The following minimal configuration example is unsecure and for testing purpose only. It will run the Stalwart mail server on <code>localhost</code>, listening on port <code>143</code> (IMAP) and <code>587</code> (Submission). Users <code>alice</code> and <code>bob</code> are configured with the password <code>foobar</code>.{{file|/etc/nixos/configuration.nix|nix|3=services.stalwart-mail = { | |||
{{file|/etc/nixos/configuration.nix|nix| | |||
services.stalwart-mail = { | |||
enable = true; | enable = true; | ||
# Use newer, latest version in NixOS 24.05 | |||
package = pkgs.stalwart-mail; | |||
settings = { | settings = { | ||
server = { | server = { | ||
hostname = | hostname = "localhost"; | ||
tls | tls.enable = false; | ||
listener = { | listener = { | ||
"smtp-submission" = { | "smtp-submission" = { | ||
Line 29: | Line 21: | ||
}; | }; | ||
}; | }; | ||
imap.auth.allow-plain-text = true; | |||
session.auth = { | |||
mechanisms = "[plain]"; | |||
directory = "'in-memory'"; | |||
}; | }; | ||
storage.directory = "in-memory"; | |||
queue.outbound.next-hop = | session.rcpt.directory = "'in-memory'"; | ||
queue.outbound.next-hop = "'local'"; | |||
directory."in-memory" = { | directory."in-memory" = { | ||
type = "memory"; | type = "memory"; | ||
principals = [ | |||
{ | { | ||
class = "individual"; | |||
name = "alice"; | name = "alice"; | ||
secret = "foobar"; | secret = "foobar"; | ||
email = [ "alice@ | email = [ "alice@localhost" ]; | ||
} | } | ||
{ | { | ||
class = "individual"; | |||
name = "bob"; | name = "bob"; | ||
secret = "foobar"; | secret = "foobar"; | ||
email = [ "bob@$ | email = [ "bob@$localhost" ]; | ||
} | } | ||
]; | ]; | ||
}; | }; | ||
}; | }; | ||
}; | };}} | ||
== See also == | == See also == |
Revision as of 10:57, 28 June 2024
Stalwart is an open-source, all-in-one mail server solution that supports JMAP, IMAP4, and SMTP protocols. It's designed to be secure, fast, robust, and scalable, with features like built-in DMARC, DKIM, SPF, and ARC support for message authentication. It also provides strong transport security through DANE, MTA-STS, and SMTP TLS reporting. Stalwart is written in Rust, ensuring high performance and memory safety.
Setup
The following minimal configuration example is unsecure and for testing purpose only. It will run the Stalwart mail server on localhost
, listening on port 143
(IMAP) and 587
(Submission). Users alice
and bob
are configured with the password foobar
.
/etc/nixos/configuration.nix
services.stalwart-mail = {
enable = true;
# Use newer, latest version in NixOS 24.05
package = pkgs.stalwart-mail;
settings = {
server = {
hostname = "localhost";
tls.enable = false;
listener = {
"smtp-submission" = {
bind = [ "[::]:587" ];
protocol = "smtp";
};
"imap" = {
bind = [ "[::]:143" ];
protocol = "imap";
};
};
};
imap.auth.allow-plain-text = true;
session.auth = {
mechanisms = "[plain]";
directory = "'in-memory'";
};
storage.directory = "in-memory";
session.rcpt.directory = "'in-memory'";
queue.outbound.next-hop = "'local'";
directory."in-memory" = {
type = "memory";
principals = [
{
class = "individual";
name = "alice";
secret = "foobar";
email = [ "alice@localhost" ];
}
{
class = "individual";
name = "bob";
secret = "foobar";
email = [ "bob@$localhost" ];
}
];
};
};
};
See also
- Maddy, a composable, modern mail server written in Go.
- Simple NixOS Mailserver