Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions data/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1954,10 +1954,10 @@ fts_header_includes {
text: ``
},

fts_index_timeout: {
default: 0,
fts_search_timeout: {
default: '30s',
plugin: 'fts',
values: setting_types.UINT,
values: setting_types.TIME,
text: `
When the full text search driver detects that the index isn't up-to-date,
the indexer is told to index the messages and is given this much time to do
Expand Down Expand Up @@ -2295,7 +2295,7 @@ Set to \`0\` to disable rotation.`
},

fts_flatcurve_rotate_time: {
default: 5000,
default: '5s',
values: setting_types.TIME_MSECS,
plugin: 'fts-flatcurve',
advanced: true,
Expand Down Expand Up @@ -8583,7 +8583,7 @@ subscriptions file, unless SUBSCRIBE command is explicitly used for them.`
},

mailbox_autoexpunge: {
default: 'no',
default: 0,
seealso: [ 'mailbox_autoexpunge_max_mails' ],
tags: [ 'mailbox' ],
values: setting_types.TIME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@
| `quota_over_flag_value` | Renamed to [[setting,quota_over_status_mask]]. |
| `quota_over_script` | Replaced by [[setting,quota_over_status]] named filter with [[setting,execute]]. |
| `quota_max_mail_size` | Renamed to [[setting,quota_mail_size]]. The default value is set to `unlimited`. |
| `fts_index_timeout` | Renamed to [[setting,fts_search_timeout]]. The default value is set to `30 secs`. |