4 Commits

Author SHA1 Message Date
Samuel FORESTIER
fc144d3cb1 Fixes related project repository link
> closes #38
2023-09-14 09:57:47 +02:00
Samuel FORESTIER
ac8a715b06 Adds missing semi-colon in reset mail.rights.version 2023-07-15 19:13:06 +02:00
Samuel FORESTIER
439e5b5e7d Adds mail.inline_attachments.text to template
This preference controls whether "text attachments" (e.g. CSV, HTML or even plain text) should **also** be directly rendered in message body.

> see #35
2023-07-15 19:03:42 +02:00
Samuel FORESTIER
07d26c7881 Resets mail.SpellCheckBeforeSend
> see #35
2023-07-15 18:56:50 +02:00
2 changed files with 5 additions and 4 deletions

View File

@@ -39,4 +39,4 @@ Also be aware that this `user.js` is made specifically for Thunderbird and is on
* [Privacy Handbuch](https://www.privacy-handbuch.de/handbuch_31p.htm) * [Privacy Handbuch](https://www.privacy-handbuch.de/handbuch_31p.htm)
* [Privacy Haters](http://r-36.net/scm/privacy-haters/file/README.md.html) * [Privacy Haters](http://r-36.net/scm/privacy-haters/file/README.md.html)
* [12bytes.org's user-overrides.js](https://codeberg.org/12bytes.org/thunderbird-user.js-supplement) * [12bytes's user-overrides.js](https://codeberg.org/12bytes/thunderbird-user.js-supplement)

View File

@@ -200,7 +200,7 @@ user_pref("mail.instrumentation.userOptedIn", false);
* true=never show the notification * true=never show the notification
* [1] https://searchfox.org/comm-esr102/source/mail/base/content/specialTabs.js#1266 ***/ * [1] https://searchfox.org/comm-esr102/source/mail/base/content/specialTabs.js#1266 ***/
user_pref("mail.rights.override", true); // [DEFAULT: unset] user_pref("mail.rights.override", true); // [DEFAULT: unset]
// user_pref("mail.rights.version", 1) // [DEFAULT: unset] // user_pref("mail.rights.version", 1); // [DEFAULT: unset]
/* 0372: allow Thunderbird usage without any configured email account [SETUP-INSTALL] /* 0372: allow Thunderbird usage without any configured email account [SETUP-INSTALL]
* [NOTE] Only enable this if you don't plan to use emails at all and want to hide the account setup ***/ * [NOTE] Only enable this if you don't plan to use emails at all and want to hide the account setup ***/
// user_pref("app.use_without_mail_account", true); // user_pref("app.use_without_mail_account", true);
@@ -1429,9 +1429,9 @@ user_pref("mail.suppress_content_language", true);
user_pref("mail.sanitize_date_header", true); user_pref("mail.sanitize_date_header", true);
/** COMPOSITION ***/ /** COMPOSITION ***/
/* 9210: Check spelling before sending [SETUP-FEATURE] /* 9210: Check spelling before sending
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=667133 ***/ * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=667133 ***/
user_pref("mail.SpellCheckBeforeSend", false); // user_pref("mail.SpellCheckBeforeSend", false);
/* 9212: Compose email in plaintext unless expressly overridden /* 9212: Compose email in plaintext unless expressly overridden
* [SETUP-FEATURE] Sometimes HTML is useful especially when used with Markdown Here * [SETUP-FEATURE] Sometimes HTML is useful especially when used with Markdown Here
* [SETTING] Account Settings > Composition & Addressing > Composition > Compose messages in HTML format * [SETTING] Account Settings > Composition & Addressing > Composition > Compose messages in HTML format
@@ -1477,6 +1477,7 @@ user_pref("mailnews.display.prefer_plaintext", false);
* true=Show inlinable attachments (text, images, messages) after the message. * true=Show inlinable attachments (text, images, messages) after the message.
* false=Do not display any attachments with the message ***/ * false=Do not display any attachments with the message ***/
user_pref("mail.inline_attachments", false); user_pref("mail.inline_attachments", false);
// user_pref("mail.inline_attachments.text", false);
/* 9218: Big attachment warning /* 9218: Big attachment warning
* [1] https://support.mozilla.org/en-US/questions/1081046 * [1] https://support.mozilla.org/en-US/questions/1081046
* [2] http://forums.mozillazine.org/viewtopic.php?f=39&t=2949521 */ * [2] http://forums.mozillazine.org/viewtopic.php?f=39&t=2949521 */