nixos/mailpit: fix defaults for listen/smtp

This commit is contained in:
Maximilian Bosch 2024-08-14 16:12:57 +02:00
parent 15dab820a6
commit f07601ce07
No known key found for this signature in database

View File

@ -59,14 +59,14 @@ in
'';
};
listen = mkOption {
default = "0.0.0.0:8025";
default = "127.0.0.1:8025";
type = types.str;
description = ''
HTTP bind interface and port for UI.
'';
};
smtp = mkOption {
default = "0.0.0.0:1025";
default = "127.0.0.1:1025";
type = types.str;
description = ''
SMTP bind interface and port.