Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base image to mailserver2/debian-mail-overlay:1.0.15 #67

Merged
merged 2 commits into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mailserver2/debian-mail-overlay:1.0.14
FROM mailserver2/debian-mail-overlay:1.0.15

LABEL description="Simple and full-featured mail server using Docker"

Expand Down
2 changes: 1 addition & 1 deletion test/default.bats
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ load 'test_helper/bats-assert/load'
}

@test "checking system: all environment variables have been replaced (default configuration)" {
run docker exec mailserver_default /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd /etc/cron.d /etc/mailname /usr/local/bin"
run docker exec mailserver_default /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd/local.d /etc/cron.d /etc/mailname /usr/local/bin"
assert_failure
}

Expand Down
2 changes: 1 addition & 1 deletion test/ldap.bats
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ load 'test_helper/bats-assert/load'
}

@test "checking system: all environment variables have been replaced (ldap configuration)" {
run docker exec mailserver_ldap /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd /etc/cron.d /etc/mailname /usr/local/bin"
run docker exec mailserver_ldap /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd/local.d /etc/cron.d /etc/mailname /usr/local/bin"
assert_failure
}

Expand Down
2 changes: 1 addition & 1 deletion test/ldap2.bats
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ load 'test_helper/bats-assert/load'
#

@test "checking system: all environment variables have been replaced (ldap2 configuration)" {
run docker exec mailserver_ldap2 /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd /etc/cron.d /etc/mailname /usr/local/bin"
run docker exec mailserver_ldap2 /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd/local.d /etc/cron.d /etc/mailname /usr/local/bin"
assert_failure
}

Expand Down
2 changes: 1 addition & 1 deletion test/reverse.bats
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ load 'test_helper/bats-assert/load'
}

@test "checking system: all environment variables have been replaced (reverse configuration)" {
run docker exec mailserver_reverse /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd /etc/cron.d /etc/mailname /usr/local/bin"
run docker exec mailserver_reverse /bin/bash -c "egrep -R -I "{{.*}}" /etc/postfix /etc/postfixadmin/fetchmail.conf /etc/dovecot /etc/rspamd/local.d /etc/cron.d /etc/mailname /usr/local/bin"
assert_failure
}

Expand Down
Loading