Merge pull request #196 from Josef-Friedrich/dovecot-config

Add a additional configuration file for dovecot
This commit is contained in:
Thomas VIAL 2016-05-29 22:46:33 +02:00
commit fd6e47d847
4 changed files with 26 additions and 4 deletions

4
config/dovecot.cf Normal file
View file

@ -0,0 +1,4 @@
# File for additional dovecot configurations.
# For more informations read http://wiki.dovecot.org/BasicConfiguration
#mail_max_userip_connections = 50

View file

@ -290,6 +290,11 @@ if [ "$ENABLE_POP3" = 1 -a "$SMTP_ONLY" != 1 ]; then
/usr/sbin/dovecot reload
fi
if [ -f /tmp/docker-mailserver/dovecot.cf ]; then
cp /tmp/docker-mailserver/dovecot.cf /etc/dovecot/local.conf
/usr/sbin/dovecot reload
fi
# Start services related to SMTP
/etc/init.d/spamassassin start
/etc/init.d/clamav-daemon start

1
test/config/dovecot.cf Normal file
View file

@ -0,0 +1 @@
mail_max_userip_connections = 69

View file

@ -222,6 +222,18 @@
[ "$status" -eq 0 ]
}
#
# dovecot
#
@test "checking dovecot: config additions" {
run docker exec mail grep -q 'mail_max_userip_connections = 69' /tmp/docker-mailserver/dovecot.cf
[ "$status" -eq 0 ]
run docker exec mail /bin/sh -c "doveconf | grep 'mail_max_userip_connections = 69'"
[ "$status" -eq 0 ]
[ "$output" = 'mail_max_userip_connections = 69' ]
}
#
# spamassassin
#