writeEximConfig: disable validation

This commit is contained in:
tv 2016-05-24 22:36:04 +02:00
parent c44e649455
commit 2ccafac558

View File

@ -60,7 +60,9 @@ rec {
inherit text;
passAsFile = [ "text" ];
} ''
${pkgs.exim}/bin/exim -C "$textPath" -bV >/dev/null
# TODO validate exim config even with config.nix.useChroot == true
# currently doing so will fail because "user exim was not found"
#${pkgs.exim}/bin/exim -C "$textPath" -bV >/dev/null
mv "$textPath" $out
'';