feat: smtp test

This commit is contained in:
Nick 2025-02-02 20:41:04 -06:00
parent 2cddd7b561
commit 2f5d7291c0
5 changed files with 87 additions and 73 deletions

View file

@ -56,6 +56,7 @@ let
subdomain = stringType;
label = stringType;
name = stringType;
hostname = stringType;
domains = genOptions stringType "url";
dns = genOptions stringType "provider";
localhost = genOptions stringType "address";

View file

@ -0,0 +1,13 @@
{ instancesFunctions }:
let
inherit (instancesFunctions)
dummy
;
in
{
hostname = "mail.smtp2go.com";
email = dummy;
ports = {
port0 = 2525;
};
}