mirror of
https://github.com/chatmail/relay.git
synced 2026-05-20 12:58:04 +00:00
Increase number of logged in IMAP sessions to 50000
This commit is contained in:
@@ -18,6 +18,9 @@
|
|||||||
- replace `bash` with `/bin/sh`
|
- replace `bash` with `/bin/sh`
|
||||||
([#334](https://github.com/deltachat/chatmail/pull/334))
|
([#334](https://github.com/deltachat/chatmail/pull/334))
|
||||||
|
|
||||||
|
- Increase number of logged in IMAP sessions to 50000
|
||||||
|
([#335](https://github.com/deltachat/chatmail/pull/335))
|
||||||
|
|
||||||
## 1.3.0 - 2024-06-06
|
## 1.3.0 - 2024-06-06
|
||||||
|
|
||||||
- don't check necessary DNS records on cmdeploy init anymore
|
- don't check necessary DNS records on cmdeploy init anymore
|
||||||
|
|||||||
@@ -19,6 +19,22 @@ mail_debug = yes
|
|||||||
# master: Warning: service(stats): client_limit (1000) reached, client connections are being dropped
|
# master: Warning: service(stats): client_limit (1000) reached, client connections are being dropped
|
||||||
default_client_limit = 20000
|
default_client_limit = 20000
|
||||||
|
|
||||||
|
# Increase number of logged in IMAP connections.
|
||||||
|
# Each connection is handled by a separate `imap` process.
|
||||||
|
# `imap` process should have `client_limit=1` as described in
|
||||||
|
# <https://doc.dovecot.org/configuration_manual/service_configuration/#service-limits>
|
||||||
|
# so each logged in IMAP session will need its own `imap` process.
|
||||||
|
#
|
||||||
|
# If this limit is reached,
|
||||||
|
# users will fail to LOGIN as `imap-login` process
|
||||||
|
# will accept them logging in but fail to transfer logged in
|
||||||
|
# connection to `imap` process until someone logs out and
|
||||||
|
# the following warning will be logged:
|
||||||
|
# Warning: service(imap): process_limit (1024) reached, client connections are being dropped
|
||||||
|
service imap {
|
||||||
|
process_limit = 50000
|
||||||
|
}
|
||||||
|
|
||||||
mail_server_admin = mailto:root@{{ config.mail_domain }}
|
mail_server_admin = mailto:root@{{ config.mail_domain }}
|
||||||
mail_server_comment = Chatmail server
|
mail_server_comment = Chatmail server
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user