Skip to content
Open
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
12 changes: 12 additions & 0 deletions data/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -4168,6 +4168,18 @@ Path to the sqlite database.`
Allows using write-ahead logging mode for database.`
},

sqlite_synchronous: {
tags: [ 'sql-sqlite' ],
values: setting_types.ENUM,
added: {
setting_sqlite_synchronous_added: false,
},
values_enum: ['default', 'off', 'normal', 'full', 'extra'],
default: 'default',
text: `
Sets the synchronization mode for SQlite database. See https://sqlite.org/pragma.html#pragma_synchronous for full explanation of values. This has no effect if database is opened in read-only mode. Setting special value \`default\` elides pragma call.`
},

sqlite_readonly: {
tags: [ 'sql-sqlite' ],
values: setting_types.BOOLEAN,
Expand Down
1 change: 1 addition & 0 deletions data/updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export const updates = {
sieve_ext_notify: '2.4.0',
sieve_vnd_duplicate: '2.4.0',
sqlite_filename: '2.4.0',
setting_sqlite_synchronous_added: '2.4.3',
ssl_sni_settings_reload_added: '2.4.0',
weak_password_schemes: '2.4.0',
variables_auth_variables_protocol: '2.4.0',
Expand Down