about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-08-02 03:46:09 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-11-12 20:00:50 +0100
commit9309563332a0a8a03447b8a5f1602ffb88b2f7ac (patch)
tree58a6df56810421afabc9f0806653f34b1e81bc57 /nixos/tests
parent1b5a1c697da8269ea49249461ced87662d120924 (diff)
postfix: add passthru tests
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/postfix.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/postfix.nix b/nixos/tests/postfix.nix
index 29e263cd7e78d..6d22b4edba0a2 100644
--- a/nixos/tests/postfix.nix
+++ b/nixos/tests/postfix.nix
@@ -11,9 +11,9 @@ import ./make-test-python.nix {
       enable = true;
       enableSubmission = true;
       enableSubmissions = true;
-      tlsTrustedAuthorities = certs.ca.cert;
-      sslCert = certs.${domain}.cert;
-      sslKey = certs.${domain}.key;
+      tlsTrustedAuthorities = "${certs.ca.cert}";
+      sslCert = "${certs.${domain}.cert}";
+      sslKey = "${certs.${domain}.key}";
       submissionsOptions = {
           smtpd_sasl_auth_enable = "yes";
           smtpd_client_restrictions = "permit";