mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
commit
46c50f93ad
|
@ -634,14 +634,18 @@ function _setup_dovecot() {
|
||||||
function _setup_dovecot_quota() {
|
function _setup_dovecot_quota() {
|
||||||
notify 'task' 'Setting up Dovecot quota'
|
notify 'task' 'Setting up Dovecot quota'
|
||||||
|
|
||||||
if [ "$ENABLE_LDAP" = 1 ]; then
|
if [ "$ENABLE_LDAP" = 1 ] || [ "$SMTP_ONLY" = 1 ]; then
|
||||||
notify 'inf' "Dovecot quota is not implemented with LDAP."
|
# Dovecot quota is disabled when using LDAP or SMTP_ONLY
|
||||||
|
|
||||||
|
# disable dovecot quota in docevot confs
|
||||||
if [ -f /etc/dovecot/conf.d/90-quota.conf ]; then
|
if [ -f /etc/dovecot/conf.d/90-quota.conf ]; then
|
||||||
mv /etc/dovecot/conf.d/90-quota.conf /etc/dovecot/conf.d/90-quota.conf.disab
|
mv /etc/dovecot/conf.d/90-quota.conf /etc/dovecot/conf.d/90-quota.conf.disab
|
||||||
sed -i "s/mail_plugins = \$mail_plugins quota/mail_plugins = \$mail_plugins/g" /etc/dovecot/conf.d/10-mail.conf
|
sed -i "s/mail_plugins = \$mail_plugins quota/mail_plugins = \$mail_plugins/g" /etc/dovecot/conf.d/10-mail.conf
|
||||||
sed -i "s/mail_plugins = \$mail_plugins imap_quota/mail_plugins = \$mail_plugins/g" /etc/dovecot/conf.d/20-imap.conf
|
sed -i "s/mail_plugins = \$mail_plugins imap_quota/mail_plugins = \$mail_plugins/g" /etc/dovecot/conf.d/20-imap.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# disable quota policy check in postfix
|
||||||
|
sed -i "s/check_policy_service inet:localhost:65265//g" /etc/postfix/main.cf
|
||||||
else
|
else
|
||||||
if [ -f /etc/dovecot/conf.d/90-quota.conf.disab ]; then
|
if [ -f /etc/dovecot/conf.d/90-quota.conf.disab ]; then
|
||||||
mv /etc/dovecot/conf.d/90-quota.conf.disab /etc/dovecot/conf.d/90-quota.conf
|
mv /etc/dovecot/conf.d/90-quota.conf.disab /etc/dovecot/conf.d/90-quota.conf
|
||||||
|
@ -659,11 +663,8 @@ function _setup_dovecot_quota() {
|
||||||
notify 'inf' "'config/docker-mailserver/dovecot-quotas.cf' is not provided. Using default quotas."
|
notify 'inf' "'config/docker-mailserver/dovecot-quotas.cf' is not provided. Using default quotas."
|
||||||
echo -n >/tmp/docker-mailserver/dovecot-quotas.cf
|
echo -n >/tmp/docker-mailserver/dovecot-quotas.cf
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$SMTP_ONLY" = 1 ]; then
|
# enable quota policy check in postfix
|
||||||
sed -i "s/check_policy_service inet:localhost:65265//g" /etc/postfix/main.cf
|
|
||||||
else
|
|
||||||
sed -i "s/reject_unknown_recipient_domain, reject_rbl_client zen.spamhaus.org/reject_unknown_recipient_domain, check_policy_service inet:localhost:65265, reject_rbl_client zen.spamhaus.org/g" /etc/postfix/main.cf
|
sed -i "s/reject_unknown_recipient_domain, reject_rbl_client zen.spamhaus.org/reject_unknown_recipient_domain, check_policy_service inet:localhost:65265, reject_rbl_client zen.spamhaus.org/g" /etc/postfix/main.cf
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,6 +179,11 @@ function teardown_file() {
|
||||||
assert_success
|
assert_success
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@test "checking postfix: dovecot quota absent in postconf" {
|
||||||
|
run docker exec mail_with_ldap /bin/bash -c "postconf | grep 'check_policy_service inet:localhost:65265'"
|
||||||
|
assert_failure
|
||||||
|
}
|
||||||
|
|
||||||
@test "checking spoofing: rejects sender forging" {
|
@test "checking spoofing: rejects sender forging" {
|
||||||
run docker exec mail_with_ldap /bin/sh -c "nc 0.0.0.0 25 < /tmp/docker-mailserver-test/auth/ldap-smtp-auth-spoofed.txt | grep 'Sender address rejected: not owned by user'"
|
run docker exec mail_with_ldap /bin/sh -c "nc 0.0.0.0 25 < /tmp/docker-mailserver-test/auth/ldap-smtp-auth-spoofed.txt | grep 'Sender address rejected: not owned by user'"
|
||||||
assert_success
|
assert_success
|
||||||
|
|
Loading…
Reference in a new issue