Add minimal (internal) tests

This commit is contained in:
Thomas Preisner 2024-12-07 02:35:16 +01:00
parent a592881b8b
commit 9687dbaae1
3 changed files with 62 additions and 0 deletions

13
tests/common/server.nix Normal file
View file

@ -0,0 +1,13 @@
{...}: {
imports = [./../../mailsystem];
config = {
virtualisation.memorySize = 1024;
mailsystem = {
enable = true;
roundcube.enable = false;
rspamd.webUi.enable = false;
certificateScheme = "selfsigned";
};
};
}