Skip to content
Open
Changes from all commits
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
40 changes: 14 additions & 26 deletions data/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -975,23 +975,18 @@ this setting is not configured. Options are:
tags: [ 'sieve', 'managesieve_quota' ],
plugin: 'sieve',
values: setting_types.UINT,
default: 0,
default: unlimited,
text: `
The maximum number of personal Sieve scripts a single user can have.

Default is \`0\`, which is unlimited.`
The maximum number of personal Sieve scripts a single user can have.`
},

sieve_quota_storage_size: {
tags: [ 'sieve', 'managesieve_storage' ],
plugin: 'sieve',
values: setting_types.SIZE,
default: 0,
default: unlimited,
text: `
The maximum amount of disk storage a single user's scripts may
occupy.

Default is \`0\`, which is unlimited.`
The maximum amount of disk storage a single user's scripts may occupy.`
},

sieve_user_email: {
Expand Down Expand Up @@ -2148,13 +2143,13 @@ A value of \`0\` means no timeout.`
},

fts_message_max_size: {
default: 0,
default: unlimited,
added: {
settings_fts_message_max_size_added: false,
},
plugin: 'fts',
values: setting_types.SIZE,
text: `Maximum body size that is processed by fts. \`0\` means unlimited.`
text: `Maximum body size that is processed by fts.`
},

fts_decoder_tika: {
Expand Down Expand Up @@ -3305,7 +3300,7 @@ Maximum number of messages that can be created in a single mailbox.`
Maximum number of messages for the [[link,quota_root]]. This value is still
multiplied by [[setting,quota_message_percentage]] to get the final value
(in this mailbox or namespace). This is reported as the MESSAGE limit in IMAP
GETQUOTA commands. Using \`0\` as the value means the same as \`unlimited\`.`
GETQUOTA commands.`
},

quota_message_percentage: {
Expand Down Expand Up @@ -3523,8 +3518,7 @@ namespace inbox {
Quota storage size limit for the [[link,quota_root]]. This value is still
multiplied by [[setting,quota_storage_percentage]] and then increased by
[[setting,quota_storage_extra]] to get the final value (in this mailbox or
namespace). This is reported as the STORAGE limit in IMAP GETQUOTA commands.
Using \`0\` as the value means the same as \`unlimited\`.`
namespace). This is reported as the STORAGE limit in IMAP GETQUOTA commands.`
},

quota_warning: {
Expand Down Expand Up @@ -6871,29 +6865,25 @@ name.`
last_valid_gid: {
seealso: [ 'first_valid_gid' ],
values: setting_types.UINT,
default: 0,
default: unlimited,
text: `
This setting and [[setting,first_valid_gid]] specify the valid GID
range for users.

A user whose primary GID is outside this range is not allowed to log in.

\`0\` means there is no explicit last GID.

If the user belongs to any supplementary groups, the corresponding IDs are
not set.`
},

last_valid_uid: {
seealso: [ 'first_valid_uid' ],
values: setting_types.UINT,
default: 0,
default: unlimited,
text: `
This setting and [[setting,first_valid_uid]] specify the valid UID
range for users.

\`0\` means there is no explicit last UID.

A user whose UID is outside this range is not allowed to log in.`
},

Expand Down Expand Up @@ -7876,7 +7866,7 @@ This setting determines whether a shared INBOX should be visible as

mail_sort_max_read_count: {
values: setting_types.UINT,
default: 0,
default: unlimited,
text: `
The number of slow mail accesses an IMAP SORT can perform before it returns
failure to the client.
Expand Down Expand Up @@ -7954,7 +7944,7 @@ enable SMTPUTF8 for LMTP and Submission sessions, and UTF8=ACCEPT for IMAP sessi
mail_vsize_bg_after_count: {
seealso: [ '[[plugin,quota]]' ],
values: setting_types.UINT,
default: 0,
default: unlimited,
text: `
Controls transitioning mail size determination to the background instead of
synchronously during the delivery process.
Expand Down Expand Up @@ -10874,11 +10864,9 @@ unknown limit exists there, which will be passed back to the client.`
submission_max_recipients: {
tags: [ 'submission' ],
values: setting_types.UINT,
default: 0,
default: unlimited,
text: `
Maximum number of recipients accepted per connection.

\`0\` means unlimited.`
Maximum number of recipients accepted per connection.`
},

submission_relay_command_timeout: {
Expand Down
Loading