mirror of
https://github.com/HorlogeSkynet/thunderbird-user.js.git
synced 2025-11-05 07:45:25 +01:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58740ffc13 | ||
|
|
66c18fa2c3 | ||
|
|
86db61d4e1 | ||
|
|
9fa3c438a4 | ||
|
|
2b839ae6ca | ||
|
|
7f75658282 | ||
|
|
eec031aa69 | ||
|
|
8e9bc01c00 | ||
|
|
4d986fffc6 | ||
|
|
8f7158ebe2 |
15
.gitattributes
vendored
Normal file
15
.gitattributes
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
* text=auto
|
||||
|
||||
*.js text
|
||||
*.md text
|
||||
*.yml text
|
||||
*.sh text
|
||||
## *.bat text eol=crlf
|
||||
*.bat -text
|
||||
|
||||
*.png binary
|
||||
|
||||
.gitattributes export-ignore
|
||||
*.yml export-ignore
|
||||
/wiki export-ignore
|
||||
/.github export-ignore
|
||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019-2024 HorlogeSkynet
|
||||
Copyright (c) 2019-2025 HorlogeSkynet
|
||||
Copyright (c) 2019 dngray
|
||||
Copyright (c) 2019 arkenfox [prev. ghacksuserjs]
|
||||
|
||||
|
||||
@@ -103,13 +103,12 @@ IF NOT EXIST user.js (
|
||||
IF !_line! GEQ 4 (GOTO exitloop)
|
||||
IF !_line! EQU 1 (SET _name=%%H)
|
||||
IF !_line! EQU 2 (SET _date=%%H)
|
||||
IF !_line! EQU 3 (SET _version=%%G)
|
||||
IF !_line! EQU 3 (SET _version=%%H)
|
||||
)
|
||||
:exitloop
|
||||
IF NOT "!_name!"=="" (
|
||||
SET "_tempvar="
|
||||
IF /I NOT "!_name!"=="!_name:ghacks=!" SET _tempvar=1
|
||||
IF /I NOT "!_name!"=="!_name:arkenfox=!" SET _tempvar=1
|
||||
IF /I NOT "!_name!"=="!_name:thunderbird=!" SET _tempvar=1
|
||||
IF !_tempvar! EQU 1 (
|
||||
CALL :message "!_name! !_version:~2!,!_date!"
|
||||
) ELSE (CALL :message "Current user.js version not recognised.")
|
||||
|
||||
23
user.js
23
user.js
@@ -1,7 +1,7 @@
|
||||
/******
|
||||
* name: thunderbird user.js
|
||||
* date: 7 November 2024
|
||||
* version: v128.0
|
||||
* date: 28 September 2025
|
||||
* version: v128.2
|
||||
* url: https://github.com/HorlogeSkynet/thunderbird-user.js
|
||||
* license: MIT (https://github.com/HorlogeSkynet/thunderbird-user.js/blob/master/LICENSE)
|
||||
|
||||
@@ -1023,7 +1023,7 @@ user_pref("network.http.referer.XOriginPolicy", 2);
|
||||
* When set to a valid, working value that matches your "network.trr.uri" (0712) Thunderbird
|
||||
* won't use the system DNS. If the IP doesn't match then DoH won't work ***/
|
||||
// user_pref("network.trr.bootstrapAddr", "10.0.0.1"); // [HIDDEN PREF]
|
||||
/* 5590: show a prompt when opening a link in external applications ***/
|
||||
/* 5590: show a prompt when opening a link in external applications [SETUP-CHROME] ***/
|
||||
user_pref("security.external_protocol_requires_permission", true);
|
||||
|
||||
/*** [SECTION 6000]: DON'T TOUCH ***/
|
||||
@@ -1273,7 +1273,7 @@ user_pref("mailnews.headers.showSender", true);
|
||||
/* 9121:
|
||||
* true=Show User Agent header in message pane
|
||||
* false=Does nothing. (default) ***/
|
||||
user_pref("mailnews.headers.showUserAgent", false);
|
||||
user_pref("mailnews.headers.showUserAgent", true);
|
||||
/* 9122: Hello argument
|
||||
* Lets you replace your IP address with the specified string in Received: headers when your
|
||||
* IP address is not a "fully qualified domain name" (FQDN). Typically you only need to do this
|
||||
@@ -1300,9 +1300,10 @@ user_pref("mailnews.display.date_senders_timezone", false);
|
||||
* "Received" header. Set the following preference. New messages will show the time the message
|
||||
* was received, rather than when it was sent. ***/
|
||||
// user_pref("mailnews.use_received_date", true);
|
||||
/* 9126: Send minimal User-Agent in outgoing email messages (default) */
|
||||
user_pref("mailnews.headers.sendUserAgent", true);
|
||||
user_pref("mailnews.headers.useMinimalUserAgent", true);
|
||||
/* 9126: Prevent any MUA information leakage through User-Agent header in outgoing email messages
|
||||
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1114475 ***/
|
||||
user_pref("mailnews.headers.sendUserAgent", false);
|
||||
// user_pref("mailnews.headers.useMinimalUserAgent", true);
|
||||
|
||||
/** ADDRESS BOOK ***/
|
||||
/* 9130: Address book collection [SETUP-FEATURE]
|
||||
@@ -1471,10 +1472,12 @@ user_pref("mail.chat.notification_info", 2);
|
||||
|
||||
/** CALENDAR ***/
|
||||
/* 9312: Set calendar timezone to avoid system detection [SETUP-INSTALL]
|
||||
* By default, extensive system detection would be performed to find user's current timezone.
|
||||
* Setting this preference to "UTC" should disable it.
|
||||
* By default, extensive system detection is performed to find current timezone (if OS supports it).
|
||||
* Disable system detection and set timezone to "UTC".
|
||||
* You may also directly set it to your timezone, i.e. "Pacific/Fakaofo"
|
||||
* [SETTING] Calendar > Calendar > Timezone ***/
|
||||
* [SETTING] Calendar > Calendar > Set timezone manually / Timezone
|
||||
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1606357 ***/
|
||||
user_pref("calendar.timezone.useSystemTimezone", false);
|
||||
user_pref("calendar.timezone.local", "UTC"); // [DEFAULT: ""]
|
||||
/* 9313: Disable calendar service performing event "extraction" from email content ***/
|
||||
// user_pref("calendar.extract.service.enabled", false); // [DEFAULT: false]
|
||||
|
||||
Reference in New Issue
Block a user