upstream: fix mail forward

This commit is contained in:
Sandro - 2024-04-12 23:38:41 +02:00
parent 8c03619c0d
commit f89eb6146d
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 16 additions and 16 deletions

View File

@ -2,7 +2,7 @@
let
servHosts = config.site.net.serv.hosts4;
inherit (config.site.net.c3d2.hosts4) dn42;
inherit (config.site.net.flpk.hosts4) c3d2-web mailtngbert;
inherit (config.site.net.flpk.hosts4) c3d2-web mail;
in
{
site.hosts = {
@ -152,37 +152,37 @@ in
sourcePort = 3479;
}
{
destination = mailtngbert;
destination = mail;
proto = "tcp";
sourcePort = 25;
}
{
destination = mailtngbert;
proto = "tcp";
sourcePort = 465;
}
{
destination = mailtngbert;
proto = "tcp";
sourcePort = 587;
}
{
destination = mailtngbert;
destination = mail;
proto = "tcp";
sourcePort = 110;
}
{
destination = mailtngbert;
destination = mail;
proto = "tcp";
sourcePort = 143;
}
{
destination = mailtngbert;
destination = mail;
proto = "tcp";
sourcePort = 465;
}
{
destination = mail;
proto = "tcp";
sourcePort = 587;
}
{
destination = mail;
proto = "tcp";
sourcePort = 993;
}
{
destination = mailtngbert;
destination = mail;
proto = "tcp";
sourcePort = 995;
}