mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 03:25:36 +00:00
nixos/mailpit: fix defaults for listen/smtp
This commit is contained in:
parent
15dab820a6
commit
f07601ce07
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user