2015-10-18 19:02:46 +00:00
|
|
|
NAME = tvial/docker-mailserver
|
|
|
|
|
2016-02-03 21:45:11 +00:00
|
|
|
all: build run fixtures tests clean
|
|
|
|
all-no-build: run fixtures tests clean
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
build:
|
2016-02-18 21:11:24 +00:00
|
|
|
docker build --no-cache -t $(NAME) .
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
run:
|
|
|
|
# Copy test files
|
|
|
|
cp test/accounts.cf postfix/
|
2016-03-18 19:07:58 +00:00
|
|
|
cp test/main.cf postfix/
|
2015-10-18 19:02:46 +00:00
|
|
|
cp test/virtual postfix/
|
2016-01-23 22:51:09 +00:00
|
|
|
# Run containers
|
2016-02-18 21:11:24 +00:00
|
|
|
docker run -d --name mail \
|
|
|
|
-v "`pwd`/postfix":/tmp/postfix \
|
|
|
|
-v "`pwd`/spamassassin":/tmp/spamassassin \
|
|
|
|
-v "`pwd`/test":/tmp/test \
|
|
|
|
-e SA_TAG=1.0 \
|
|
|
|
-e SA_TAG2=2.0 \
|
|
|
|
-e SA_KILL=3.0 \
|
2016-03-18 19:12:18 +00:00
|
|
|
-e SASL_PASSWD=testing \
|
2016-02-18 21:11:24 +00:00
|
|
|
-h mail.my-domain.com -t $(NAME)
|
|
|
|
docker run -d --name mail_pop3 \
|
|
|
|
-v "`pwd`/postfix":/tmp/postfix \
|
|
|
|
-v "`pwd`/spamassassin":/tmp/spamassassin \
|
|
|
|
-v "`pwd`/test":/tmp/test \
|
|
|
|
-e ENABLE_POP3=1 \
|
|
|
|
-h mail.my-domain.com -t $(NAME)
|
2016-02-29 22:52:10 +00:00
|
|
|
docker run -d --name mail_smtponly \
|
|
|
|
-v "`pwd`/postfix":/tmp/postfix \
|
|
|
|
-v "`pwd`/spamassassin":/tmp/spamassassin \
|
|
|
|
-v "`pwd`/test":/tmp/test \
|
|
|
|
-e SMTP_ONLY=1 \
|
|
|
|
-h mail.my-domain.com -t $(NAME)
|
2016-02-04 07:51:07 +00:00
|
|
|
# Wait for containers to fully start
|
2016-02-03 21:45:11 +00:00
|
|
|
sleep 60
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
fixtures:
|
2015-10-18 20:08:21 +00:00
|
|
|
# Sending test mails
|
2016-03-18 19:12:18 +00:00
|
|
|
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"
|
2015-10-19 17:37:49 +00:00
|
|
|
docker exec mail /bin/sh -c "nc 0.0.0.0 25 < /tmp/test/email-templates/non-existing-user.txt"
|
2015-10-19 13:41:51 +00:00
|
|
|
# Wait for mails to be analyzed
|
|
|
|
sleep 10
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
tests:
|
|
|
|
# Start tests
|
2016-02-24 23:11:48 +00:00
|
|
|
./test/bats/bats test/tests.bats
|
2016-01-22 17:47:43 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
# Get default files back
|
2016-03-18 19:07:58 +00:00
|
|
|
git checkout postfix/accounts.cf postfix/main.cf postfix/virtual
|
2016-02-04 07:51:07 +00:00
|
|
|
# Remove running test containers
|
2016-02-29 22:52:10 +00:00
|
|
|
docker rm -f mail mail_pop3 mail_smtponly
|