Skip to content

Instantly share code, notes, and snippets.

@reorx
Last active July 27, 2022 15:50
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save reorx/d93c4b7a208a824b9a45b4cce5d06158 to your computer and use it in GitHub Desktop.
Save reorx/d93c4b7a208a824b9a45b4cce5d06158 to your computer and use it in GitHub Desktop.
Thunderbird customization configs

Extensions

Name Version Enabled ID
Attach from Clipboard 1.1.0 true clipboard@ganss.org
CustomizeMyBird 2.7.9.1 true CustomizeMyBird@Aris_CTRdev
Disable DragAndDrop (Thunderbird) 3.2.0 true disable_dnd_tb@pqrs.org
Dorando keyconfig 2018.1 true keyconfig@mozilla.dorando.at
Header Tools Lite 0.6.2 true headerToolsLite@kaosmos.nnp
Manually sort folders 1.2.1 true tbsortfolders@xulforum.org
quickFilters 4.0.3 true quickFilters@axelg.com
Search Results Sort By Date Not Relevance 1.17 true srsbdnr-@ntispam-caseyconnor.org
Folder Filters Button 1.4 false kkmalek@gmail.com
Mail Redirect 0.10.2 false {CC3C233D-6668-41bc-AAEB-F3A1D1D594F5}
Nostalgy 0.2.36 false nostalgy@alain.frisch
Xpunge 0.7.1 false {786abda0-fd14-d247-bf69-38b2fc18491b}

exported from: Troubleshooting Information - Extensions
convert tool: https://donatstudios.com/CsvToMarkdownTable

about:config

Stop truncating long lines when sending email:

  • mail.wrap_long_lines: false
  • mailnews.wraplength: 0

Expunge right after mail is deleted:

  • mail.imap.expunge_after_delete: true
  • mail.imap.expunge_option: 1

http://kb.mozillazine.org/Deleting_messages_in_IMAP_accounts
http://kb.mozillazine.org/Thunderbird_:_Tips_:_Compacting_Folders

Thread messages correctly using the References/In-Reply-To headers regardless of the order the messages were added to the folder:

  • mail.correct_threading: false

https://wiki.mozilla.org/MailNews:Message_Threading
http://kb.mozillazine.org/Stop_threading_by_subject

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Note:
This file can either be put in `<profile path>/chrome/userChrome.css`,
or be pasted in Custom CSS Code of CustomizeMyBird Extension,
the latter way does not require restart to take effect.
*/
/* References:
- http://kb.mozillazine.org/Category:Visual_customizations_%28Thunderbird%29
- http://kb.mozillazine.org/Pane_and_menu_fonts
*/
/* Selectors:
#threadTree treechildren
#threadTree treechildren::-moz-tree-row
#threadTree treechildren::-moz-tree-cell(unread)
#threadTree treechildren::-moz-tree-cell-text(unread)
#threadTree treechildren::-moz-tree-cell(selected)
#threadTree treechildren::-moz-tree-cell-text(selected)
#folderTree treechildren
#folderTree treechildren::-moz-tree-row
*/
/* Thunderbird 60 */
/* thread */
#threadTree treechildren {
font-size: 13px !important;
font-family: "Helvetica Neue";
}
#threadTree treechildren::-moz-tree-row {
height: 32px !important;
}
/* folder */
#folderTree treechildren {
font-size: 13px !important;
}
#folderTree treechildren::-moz-tree-row {
height: 25px !important;
}
/* If thread lines are not shown in MacOS, uncomment the following code */
/*
#threadTree treechildren::-moz-tree-line {
visibility: visible !important;
}
#threadTree treechildren::-moz-tree-line(selected, focus) {
border-color: #FFFFFF !important;
}
*/
/* Thunderbird Beta (68) */
/*
#threadTree treechildren::-moz-tree-row {
font-size: 16px !important;
height: 30px !important;
}
#folderTree treechildren {
font-size: 18px !important;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment