From cf9c225c9fc6f37511fd05f13ac53d4f111d1994 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 13 May 2026 13:43:16 +0100 Subject: 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. --- thunderbird/user.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'thunderbird') 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", ""); -- cgit v1.3.1