summaryrefslogtreecommitdiffstats
path: root/debian/thunderbird.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:33:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:33:31 +0000
commita820a96849e295d4abc6238a01c650bf3663b774 (patch)
treebcebc68af266bfcc779f699ad3d5eeb05b067216 /debian/thunderbird.js
parentAdding upstream version 1:115.7.0. (diff)
downloadthunderbird-a820a96849e295d4abc6238a01c650bf3663b774.tar.xz
thunderbird-a820a96849e295d4abc6238a01c650bf3663b774.zip
Adding debian version 1:115.7.0-1~deb12u1.debian/1%115.7.0-1_deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/thunderbird.js')
-rw-r--r--debian/thunderbird.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/debian/thunderbird.js b/debian/thunderbird.js
new file mode 100644
index 0000000000..ad5c492621
--- /dev/null
+++ b/debian/thunderbird.js
@@ -0,0 +1,42 @@
+// This is the Debian specific preferences file for Mozilla Thunderbird
+// You can make any change in here, it is the purpose of this file.
+// You can, with this file and all files present in the directory
+//
+// /etc/thunderbird/pref directory
+//
+// override any preference that is present in the directory
+//
+// /usr/lib/thunderbird/defaults/pref
+//
+// While your changes will be kept on upgrade if you modify files in
+// /etc/thunderbird/pref, please note that they won't be kept if you
+// do them in /usr/lib/thunderbird/defaults/pref.
+
+pref("extensions.update.enabled", true);
+
+// Use LANG environment variable to choose locale from system
+// The old environment setting 'pref("intl.locale.matchOS", true);' is
+// currently not working anymore. The new introduced setting
+// 'intl.locale.requested' is now used for this. Setting an empty string is
+// pulling the system locale into Thunderbird.
+pref("intl.locale.requested", "");
+
+// Disable default mail checking (gnome).
+pref("mail.shell.checkDefaultMail", false);
+
+// Disable default mail client check
+pref("mail.shell.checkDefaultClient", false);
+
+// if you are not using gnome
+pref("network.protocol-handler.app.http", "x-www-browser");
+pref("network.protocol-handler.app.https", "x-www-browser");
+
+// This setting is a workaround for some crashes inside the JS engine.
+// By this Thunderbird will use more memory and acting slower as the sharing
+// memory between interacting JS files is disabled.
+pref ("javascript.options.baselinejit", false);
+
+// Uncomment the follwing setting if you want to have a extra mail header field
+// for X-Debbugs-Cc, only needed in case you have to work with the Debian
+// Bug Tracking System more deeply
+//pref("mail.compose.other.header", "X-Debbugs-Cc");