From 465d5de166519a76bb989db551b76127f46bb866 Mon Sep 17 00:00:00 2001 From: Thomas VIAL Date: Mon, 19 Oct 2015 19:37:49 +0200 Subject: [PATCH] Testing Travis config with nc commands --- Makefile | 7 ++++++- test/test.sh | 0 2 files changed, 6 insertions(+), 1 deletion(-) mode change 100755 => 100644 test/test.sh diff --git a/Makefile b/Makefile index 0e398c07..e049fd92 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,12 @@ prepare: fixtures: # Sending test mails - for file in test/email-templates/*.txt ; do docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/$$file" ; done + docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/amavis-spam.txt" + docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/amavis-virus.txt" + docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/existing-alias-external.txt" + docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/existing-alias-local.txt" + docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/existing-user.txt" + docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/non-existing-user.txt" # Wait for mails to be analyzed sleep 10 diff --git a/test/test.sh b/test/test.sh old mode 100755 new mode 100644