mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
132 lines
3.6 KiB
Nix
132 lines
3.6 KiB
Nix
# Rudimentary test checking that the Stalwart email server can:
|
|
# - receive some message through SMTP submission, then
|
|
# - serve this message through IMAP.
|
|
|
|
let
|
|
certs = import ./common/acme/server/snakeoil-certs.nix;
|
|
domain = certs.domain;
|
|
|
|
in
|
|
import ./make-test-python.nix (
|
|
{ lib, ... }:
|
|
{
|
|
name = "stalwart-mail";
|
|
|
|
nodes.main =
|
|
{ pkgs, ... }:
|
|
{
|
|
security.pki.certificateFiles = [ certs.ca.cert ];
|
|
|
|
services.stalwart-mail = {
|
|
enable = true;
|
|
settings = {
|
|
server.hostname = domain;
|
|
|
|
certificate."snakeoil" = {
|
|
cert = "%{file:${certs.${domain}.cert}}%";
|
|
private-key = "%{file:${certs.${domain}.key}}%";
|
|
};
|
|
|
|
server.tls = {
|
|
certificate = "snakeoil";
|
|
enable = true;
|
|
implicit = false;
|
|
};
|
|
|
|
server.listener = {
|
|
"smtp-submission" = {
|
|
bind = [ "[::]:587" ];
|
|
protocol = "smtp";
|
|
};
|
|
|
|
"imap" = {
|
|
bind = [ "[::]:143" ];
|
|
protocol = "imap";
|
|
};
|
|
};
|
|
|
|
session.auth.mechanisms = "[plain]";
|
|
session.auth.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@${domain}" ];
|
|
}
|
|
{
|
|
class = "individual";
|
|
name = "bob";
|
|
secret = "foobar";
|
|
email = [ "bob@${domain}" ];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
(pkgs.writers.writePython3Bin "test-smtp-submission" { } ''
|
|
from smtplib import SMTP
|
|
|
|
with SMTP('localhost', 587) as smtp:
|
|
smtp.starttls()
|
|
smtp.login('alice', 'foobar')
|
|
smtp.sendmail(
|
|
'alice@${domain}',
|
|
'bob@${domain}',
|
|
"""
|
|
From: alice@${domain}
|
|
To: bob@${domain}
|
|
Subject: Some test message
|
|
|
|
This is a test message.
|
|
""".strip()
|
|
)
|
|
'')
|
|
|
|
(pkgs.writers.writePython3Bin "test-imap-read" { } ''
|
|
from imaplib import IMAP4
|
|
|
|
with IMAP4('localhost') as imap:
|
|
imap.starttls()
|
|
status, [caps] = imap.login('bob', 'foobar')
|
|
assert status == 'OK'
|
|
imap.select()
|
|
status, [ref] = imap.search(None, 'ALL')
|
|
assert status == 'OK'
|
|
[msgId] = ref.split()
|
|
status, msg = imap.fetch(msgId, 'BODY[TEXT]')
|
|
assert status == 'OK'
|
|
assert msg[0][1].strip() == b'This is a test message.'
|
|
'')
|
|
];
|
|
};
|
|
|
|
testScript = # python
|
|
''
|
|
main.wait_for_unit("stalwart-mail.service")
|
|
main.wait_for_open_port(587)
|
|
main.wait_for_open_port(143)
|
|
|
|
main.succeed("test-smtp-submission")
|
|
main.succeed("test-imap-read")
|
|
'';
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [
|
|
happysalada
|
|
pacien
|
|
onny
|
|
];
|
|
};
|
|
}
|
|
)
|