diff options
Diffstat (limited to 'repo/thunderbird/vendor-prefs.js')
-rw-r--r-- | repo/thunderbird/vendor-prefs.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/thunderbird/vendor-prefs.js b/repo/thunderbird/vendor-prefs.js new file mode 100644 index 0000000..5aeeb1b --- /dev/null +++ b/repo/thunderbird/vendor-prefs.js @@ -0,0 +1,17 @@ +// Use LANG environment variable to choose locale +pref("intl.locale.requested", ""); + +// Use system-provided dictionaries +pref("spellchecker.dictionary_path", "/usr/share/hunspell"); + +// Disable default mailer checking. +pref("mail.shell.checkDefaultMail", false); + +// Don't disable our bundled extensions in the application directory +pref("extensions.autoDisableScopes", 11); +pref("extensions.shownSelectionUI", true); + +// Disable telemetry +pref("datareporting.healthreport.uploadEnabled", false); +pref("datareporting.policy.dataSubmissionEnabled", false); +pref("toolkit.telemetry.archive.enabled", false); |