From f88aa2d7bf5f6203e7db3b629842532f097f25a3 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 5 May 2026 01:03:04 +0200 Subject: [PATCH] nixos/tests/postfix-tlspol: fix mta-sts expectation This is now a temp failure instead of an empty result. --- nixos/tests/postfix-tlspol.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/postfix-tlspol.nix b/nixos/tests/postfix-tlspol.nix index 0d03c1d82052..d4f9f69d9bb5 100644 --- a/nixos/tests/postfix-tlspol.nix +++ b/nixos/tests/postfix-tlspol.nix @@ -30,7 +30,7 @@ machine.log(json.dumps(response, indent=2)) assert response["dane"]["policy"] == "", f"Unexpected DANE policy for localhost: {response["dane"]["policy"]}" - assert response["mta-sts"]["policy"] == "", f"Unexpected MTA-STS policy for localhost: {response["mta-sts"]["policy"]}" + assert response["mta-sts"]["policy"] == "TEMP", f"Unexpected MTA-STS policy for localhost: {response["mta-sts"]["policy"]}" machine.log(machine.execute("systemd-analyze security postfix-tlspol.service | grep -v ✓")[1]) '';