From af299f3b4e57a05b7bad2c5399a2ae7c8c0bb3e5 Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Wed, 16 Apr 2025 10:09:10 +0200 Subject: [PATCH] nixosTests.mailhog: remove unsupported flags from sendmail --- nixos/tests/mailhog.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/mailhog.nix b/nixos/tests/mailhog.nix index 5192e3471e35..b00d318cb416 100644 --- a/nixos/tests/mailhog.nix +++ b/nixos/tests/mailhog.nix @@ -20,7 +20,7 @@ import ./make-test-python.nix ( machine.wait_for_open_port(1025) machine.wait_for_open_port(8025) # Test sendmail wrapper (this uses smtp, which tests the connection) - machine.succeed('printf "To: root@example.com\r\n\r\nthis is the body of the email" | sendmail -t -i -f sender@example.com') + machine.succeed('printf "To: root@example.com\r\n\r\nthis is the body of the email" | sendmail -f sender@example.com') res = machine.succeed( "curl --fail http://localhost:8025/api/v2/messages" )