2015-10-18 19:02:46 +00:00
|
|
|
NAME = tvial/docker-mailserver
|
2015-10-18 19:38:22 +00:00
|
|
|
VERSION = $(TRAVIS_BUILD_ID)
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
all: build run prepare fixtures tests
|
|
|
|
|
|
|
|
build:
|
|
|
|
docker build --no-cache -t $(NAME):$(VERSION) .
|
|
|
|
|
|
|
|
run:
|
|
|
|
# Copy test files
|
|
|
|
cp test/accounts.cf postfix/
|
|
|
|
cp test/virtual postfix/
|
2016-01-23 22:51:09 +00:00
|
|
|
# Run containers
|
2015-10-19 13:41:51 +00:00
|
|
|
docker run -d --name mail -v "`pwd`/postfix":/tmp/postfix -v "`pwd`/spamassassin":/tmp/spamassassin -v "`pwd`/test":/tmp/test -h mail.my-domain.com -t $(NAME):$(VERSION)
|
2016-01-23 22:51:09 +00:00
|
|
|
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):$(VERSION)
|
2016-01-12 00:02:47 +00:00
|
|
|
sleep 25
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
prepare:
|
|
|
|
# Reinitialize logs
|
|
|
|
docker exec mail /bin/sh -c 'echo "" > /var/log/mail.log'
|
2016-01-23 22:51:09 +00:00
|
|
|
docker exec mail_pop3 /bin/sh -c 'echo "" > /var/log/mail.log'
|
2015-10-18 19:02:46 +00:00
|
|
|
|
|
|
|
fixtures:
|
2015-10-18 20:08:21 +00:00
|
|
|
# Sending test mails
|
2015-10-19 17:37:49 +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"
|
|
|
|
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
|
2015-10-19 13:41:51 +00:00
|
|
|
/bin/bash ./test/test.sh
|
2016-01-22 17:47:43 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
# Get default files back
|
|
|
|
git checkout postfix/accounts.cf postfix/virtual
|