Merge pull request #74048 from ckauhaus/ssmtp-named-ssmtp

ssmtp: use services.ssmtp not networking.defaultMailServer
This commit is contained in:
Florian Klink
2019-11-28 16:32:50 +01:00
committed by GitHub
3 changed files with 10 additions and 10 deletions

View File

@@ -9,8 +9,8 @@ import ./make-test.nix ({ lib, ... }:
{
services.mailcatcher.enable = true;
networking.defaultMailServer.directDelivery = true;
networking.defaultMailServer.hostName = "localhost:1025";
services.ssmtp.enable = true;
services.ssmtp.hostName = "localhost:1025";
environment.systemPackages = [ pkgs.mailutils ];
};