Skip to content

Commit

Permalink
Prevents MUA information leakage through User-Agent header
Browse files Browse the repository at this point in the history
> closes #60
  • Loading branch information
HorlogeSkynet committed Nov 16, 2024
1 parent 8e9bc01 commit eec031a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit eec031a

Please sign in to comment.