mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
Increase the max number of IMAP connections per IP
This commit is contained in:
parent
f532d01ab3
commit
e95cbff41a
2 changed files with 9 additions and 3 deletions
|
|
@ -34,7 +34,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "$ROOT/data:/data"
|
- "$ROOT/data:/data"
|
||||||
- "$ROOT/mail:/mail"
|
- "$ROOT/mail:/mail"
|
||||||
- "$ROOT/overrides:/overrides"
|
- "./overrides:/overrides"
|
||||||
|
|
||||||
smtp:
|
smtp:
|
||||||
image: mailu/postfix:$VERSION
|
image: mailu/postfix:$VERSION
|
||||||
|
|
@ -42,7 +42,7 @@ services:
|
||||||
env_file: .env
|
env_file: .env
|
||||||
volumes:
|
volumes:
|
||||||
- "$ROOT/data:/data"
|
- "$ROOT/data:/data"
|
||||||
- "$ROOT/overrides:/overrides"
|
- "./overrides:/overrides"
|
||||||
|
|
||||||
antispam:
|
antispam:
|
||||||
image: mailu/rspamd:$VERSION
|
image: mailu/rspamd:$VERSION
|
||||||
|
|
@ -51,7 +51,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "$ROOT/filter:/var/lib/rspamd"
|
- "$ROOT/filter:/var/lib/rspamd"
|
||||||
- "$ROOT/dkim:/dkim"
|
- "$ROOT/dkim:/dkim"
|
||||||
- "$ROOT/overrides/rspamd:/etc/rspamd/override.d"
|
- "./overrides/rspamd:/etc/rspamd/override.d"
|
||||||
|
|
||||||
antivirus:
|
antivirus:
|
||||||
image: mailu/$ANTIVIRUS:$VERSION
|
image: mailu/$ANTIVIRUS:$VERSION
|
||||||
|
|
|
||||||
6
roles/mailu-docker/files/mailu/overrides/dovecot.conf
Normal file
6
roles/mailu-docker/files/mailu/overrides/dovecot.conf
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
protocol imap {
|
||||||
|
# Maximum number of IMAP connections allowed for a user from each IP address.
|
||||||
|
# NOTE: The username is compared case-sensitively.
|
||||||
|
mail_max_userip_connections = 30
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue