Unverified Commit f07601ce authored by Maximilian Bosch's avatar Maximilian Bosch
Browse files

nixos/mailpit: fix defaults for listen/smtp

parent 15dab820
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.