diff options
Diffstat (limited to 'plugins/openpgp/src/database.vala')
-rw-r--r-- | plugins/openpgp/src/database.vala | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/openpgp/src/database.vala b/plugins/openpgp/src/database.vala index 2bda06af..f488078c 100644 --- a/plugins/openpgp/src/database.vala +++ b/plugins/openpgp/src/database.vala @@ -36,6 +36,14 @@ public class Database : Qlite.Database { this.account_setting_table = new AccountSetting(this); this.contact_key_table = new ContactKey(this); init({account_setting_table, contact_key_table}); + + try { + exec("PRAGMA journal_mode = WAL"); + exec("PRAGMA synchronous = NORMAL"); + exec("PRAGMA secure_delete = ON"); + } catch (Error e) { + error("Failed to set OpenPGP database properties: %s", e.message); + } } public void set_contact_key(Jid jid, string key) { |