summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-05-24 22:36:04 +0200
committertv <tv@krebsco.de>2016-05-24 22:36:04 +0200
commit2ccafac558ed89915fc595c82679f55c3417e9cd (patch)
tree5a92fb4dd902e3d38f5cd20cc089d92d4d4e05a2 /krebs
parentc44e649455f3c162b66fb9d2d678a7a0eeff598b (diff)
writeEximConfig: disable validation
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/builders.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/krebs/5pkgs/builders.nix b/krebs/5pkgs/builders.nix
index 70d65cfc..19169b18 100644
--- a/krebs/5pkgs/builders.nix
+++ b/krebs/5pkgs/builders.nix
@@ -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
'';