mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
commit
4d2ec79c18
2
test/config/clear.postfix-accounts.cf
Normal file
2
test/config/clear.postfix-accounts.cf
Normal file
|
@ -0,0 +1,2 @@
|
|||
user1@localhost.localdomain|mypassword
|
||||
user2@otherdomain.tld|mypassword
|
|
@ -1,2 +1,2 @@
|
|||
user1@localhost.localdomain|mypassword
|
||||
user2@otherdomain.tld|mypassword
|
||||
user1@localhost.localdomain|{MD5-CRYPT}$1$agWCql3M$ATBimsiJ4EETYnG/yLWwr.
|
||||
user2@otherdomain.tld|{MD5-CRYPT}$1$31q82qPz$vprzqppi3chSsK8SgWT8d/
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
}
|
||||
|
||||
@test "checking imap: server is ready with STARTTLS" {
|
||||
run docker exec mail /bin/bash -c "nc -w 1 0.0.0.0 143 | grep '* OK' | grep 'STARTTLS' | grep 'ready'"
|
||||
run docker exec mail /bin/bash -c "nc -w 5 0.0.0.0 143 | grep '* OK' | grep 'STARTTLS' | grep 'ready'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
|
@ -79,13 +79,13 @@
|
|||
# sasl
|
||||
#
|
||||
|
||||
@test "checking sasl: testsaslauthd works with good password" {
|
||||
run docker exec mail /bin/sh -c "testsaslauthd -u user2 -r otherdomain.tld -p mypassword | grep 'OK \"Success.\"'"
|
||||
@test "checking sasl: doveadm auth test works with good password" {
|
||||
run docker exec mail /bin/sh -c "doveadm auth test -x service=smtp user2@otherdomain.tld mypassword | grep 'auth succeeded'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "checking sasl: testsaslauthd fails with bad password" {
|
||||
run docker exec mail /bin/sh -c "testsaslauthd -u user2 -r otherdomain.tld -p BADPASSWORD | grep 'NO \"authentication failed\"'"
|
||||
@test "checking sasl: doveadm auth test fails with bad password" {
|
||||
run docker exec mail /bin/sh -c "doveadm auth test -x service=smtp user2@otherdomain.tld BADPASSWORD | grep 'auth failed'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
|
@ -109,22 +109,22 @@
|
|||
#
|
||||
|
||||
@test "checking smtp: authentication works with good password (plain)" {
|
||||
run docker exec mail /bin/sh -c "nc -w 1 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-plain.txt | grep 'Authentication successful'"
|
||||
run docker exec mail /bin/sh -c "nc -w 5 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-plain.txt | grep 'Authentication successful'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "checking smtp: authentication fails with wrong password (plain)" {
|
||||
run docker exec mail /bin/sh -c "nc -w 1 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-plain-wrong.txt | grep 'authentication failed'"
|
||||
run docker exec mail /bin/sh -c "nc -w 20 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-plain-wrong.txt | grep 'authentication failed'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "checking smtp: authentication works with good password (login)" {
|
||||
run docker exec mail /bin/sh -c "nc -w 1 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-login.txt | grep 'Authentication successful'"
|
||||
run docker exec mail /bin/sh -c "nc -w 5 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-login.txt | grep 'Authentication successful'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
@test "checking smtp: authentication fails with wrong password (login)" {
|
||||
run docker exec mail /bin/sh -c "nc -w 1 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-login-wrong.txt | grep 'authentication failed'"
|
||||
run docker exec mail /bin/sh -c "nc -w 20 0.0.0.0 25 < /tmp/docker-mailserver/test/auth/smtp-auth-login-wrong.txt | grep 'authentication failed'"
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
|
@ -175,34 +175,22 @@
|
|||
#
|
||||
|
||||
@test "checking accounts: user accounts" {
|
||||
run docker exec mail sasldblistusers2
|
||||
run docker exec mail doveadm user '*'
|
||||
[ "$status" -eq 0 ]
|
||||
[ "${lines[0]}" = "user1@localhost.localdomain: userPassword" ]
|
||||
[ "${lines[1]}" = "user2@otherdomain.tld: userPassword" ]
|
||||
[ "${lines[0]}" = "user1@localhost.localdomain" ]
|
||||
[ "${lines[1]}" = "user2@otherdomain.tld" ]
|
||||
}
|
||||
|
||||
@test "checking accounts: user mail folders for user1" {
|
||||
run docker exec mail ls -A /var/mail/localhost.localdomain/user1
|
||||
run docker exec mail /bin/bash -c "ls -A /var/mail/localhost.localdomain/user1 | grep -E '.Drafts|.Sent|.Trash|cur|new|subscriptions|tmp' | wc -l"
|
||||
[ "$status" -eq 0 ]
|
||||
[ "${lines[0]}" = ".Drafts" ]
|
||||
[ "${lines[1]}" = ".Sent" ]
|
||||
[ "${lines[2]}" = ".Trash" ]
|
||||
[ "${lines[3]}" = "courierimapsubscribed" ]
|
||||
[ "${lines[4]}" = "cur" ]
|
||||
[ "${lines[5]}" = "new" ]
|
||||
[ "${lines[6]}" = "tmp" ]
|
||||
[ "$output" -eq 7 ]
|
||||
}
|
||||
|
||||
@test "checking accounts: user mail folders for user2" {
|
||||
run docker exec mail ls -A /var/mail/otherdomain.tld/user2
|
||||
run docker exec mail /bin/bash -c "ls -A /var/mail/otherdomain.tld/user2 | grep -E '.Drafts|.Sent|.Trash|cur|new|subscriptions|tmp' | wc -l"
|
||||
[ "$status" -eq 0 ]
|
||||
[ "${lines[0]}" = ".Drafts" ]
|
||||
[ "${lines[1]}" = ".Sent" ]
|
||||
[ "${lines[2]}" = ".Trash" ]
|
||||
[ "${lines[3]}" = "courierimapsubscribed" ]
|
||||
[ "${lines[4]}" = "cur" ]
|
||||
[ "${lines[5]}" = "new" ]
|
||||
[ "${lines[6]}" = "tmp" ]
|
||||
[ "$output" -eq 7 ]
|
||||
}
|
||||
|
||||
#
|
||||
|
@ -217,9 +205,9 @@
|
|||
}
|
||||
|
||||
@test "checking postfix: main.cf overrides" {
|
||||
run docker exec mail grep -q 'max_idle = 600s' /tmp/postfix/main.cf
|
||||
run docker exec mail grep -q 'max_idle = 600s' /tmp/docker-mailserver/postfix-main.cf
|
||||
[ "$status" -eq 0 ]
|
||||
run docker exec mail grep -q 'readme_directory = /tmp' /tmp/postfix/main.cf
|
||||
run docker exec mail grep -q 'readme_directory = /tmp' /tmp/docker-mailserver/postfix-main.cf
|
||||
[ "$status" -eq 0 ]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue