Index of /~kszysiu/thunderbird

[ICO]NameLast modifiedSizeDescription

[DIR]Parent Directory  -
[TXT]FormatFlowed.html25-Apr-2006 04:38 5.2K


For some reason (RFC2646 notably) thunderbird inserts
space before greater-than sign while typing which kills
manual quoting.

Added these to prefs.js:
user_pref("mail.quoteasblock", false);
user_pref("mailnews.display.disable_format_flowed_support", true);
user_pref("mailnews.send_plaintext_flowed", false); 
You may also wish to disable graphical quoting:
- add this to prefs.js
user_pref("mail.quoted_graphical", false);
- along with these in userContent.css
blockquote[type=cite] {
        padding-bottom: 0 ! important;
        padding-top: 0 ! important;
        padding-left: 0 ! important;
        border-left: none ! important;
        border-right: none ! important;
}