diff options
| author | 2026-05-13 13:43:16 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:16 +0100 | |
| commit | cf9c225c9fc6f37511fd05f13ac53d4f111d1994 (patch) | |
| tree | d42d72cc784119921119afa1fd1b963fe802c60e /thunderbird/user.js | |
| parent | 012f9d7b1bb06d994ed58d3bc5620e4a726a2d99 (diff) | |
| download | dotfiles-cf9c225c9fc6f37511fd05f13ac53d4f111d1994.tar.gz dotfiles-cf9c225c9fc6f37511fd05f13ac53d4f111d1994.tar.bz2 dotfiles-cf9c225c9fc6f37511fd05f13ac53d4f111d1994.zip | |
feat(thunderbird): top-post replies to match recipient expectations
Bottom-posting is arguably better but non-technical recipients find it
disorienting. reply_on_top=1 puts the cursor above the quoted text;
sig_bottom=false keeps the signature adjacent to the reply rather than
below the quote.
Diffstat (limited to 'thunderbird/user.js')
| -rw-r--r-- | thunderbird/user.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/thunderbird/user.js b/thunderbird/user.js index 81565a4..ace7bed 100644 --- a/thunderbird/user.js +++ b/thunderbird/user.js @@ -25,6 +25,10 @@ user_pref("mailnews.send_plaintext_flowed", true); user_pref("mail.compose.default_to_paragraph", false); user_pref("mailnews.wraplength", 72); +/** Replies — top-post to match what most recipients expect **/ +user_pref("mail.identity.default.reply_on_top", 1); +user_pref("mail.identity.default.sig_bottom", false); + /** Outgoing headers — don't leak TB version **/ user_pref("mailnews.headers.showUserAgent", false); user_pref("general.useragent.override", ""); |
