Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
data/settings: Change the default lmtp_user_concurrency_limit to 10
  • Loading branch information
fleischie committed Mar 13, 2025
commit 3502ae352a7ee1e9fefad279f2c4d24be58ceafb
10 changes: 8 additions & 2 deletions data/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -6962,14 +6962,20 @@ format), save the message to the detail mailbox.`

lmtp_user_concurrency_limit: {
tags: [ 'lmtp', 'user_concurrency_limits' ],
changed: {
settings_lmtp_user_concurrency_limit_changed: `
Changed from \`unlimited\` to \`10\`.`
},
values: setting_types.UINT,
default: 0,
default: 10,
text: `
Limit the number of concurrent deliveries to a single user to this maximum
value.

It is useful if one user is receiving numerous mail messages and thereby
causing delays to other deliveries.`
causing delays to other deliveries.

To prevent limiting concurrent user deliveries set this to \`unlimited\`.`
},

lmtp_verbose_replies: {
Expand Down
1 change: 1 addition & 0 deletions data/updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const updates = {
settings_imapc_ssl_verify_removed: '2.4.0',
settings_inet_listener_type_added: '2.4.0',
settings_login_socket_path_added: '2.4.0',
settings_lmtp_user_concurrency_limit_changed: '2.4.1',
settings_mail_attachment_sis_option_changed: '2.4.0',
settings_mail_cache_max_headers_count_added: '2.4.0',
settings_mail_cache_max_header_name_length_added: '2.4.0',
Expand Down