Thunderbird useful add-ons and tricks
Last update
2024-09-02
2024-09-02
« — »
Settings
1 | security.dialog_enable_delay = 100 # faster enabling of dialog boxes buttons (download, confirm) |
Add-ons
- TBSync -- sync addressbook & calendar interface
- Provider for CalDAV & CardDAV -- DAV provider for TBSync
- XNote++
Obsolete
- Auto Compress File
- EditEmailSubject
- Expression Search / GMailUI
- FireTray -- minimize to tray icon, fork of foudfou/FireTray
- gContactSync
- Google Calendar Tab -- GitHub page
- Super Date Format
Date format
TB uses the system locale settings in order to display the date and time, you can change them by setting the LANG
environment variable:
1 2 3 4 5 | #!/bin/bash # http://kb.mozillazine.org/Date_display_format # https://bugzilla.mozilla.org/show_bug.cgi?id=1426907 export LANG=it_IT.UTF-8 # DD/MM/YYYY HH.MM exec /opt/thunderbird/thunderbird |
Dark theme
- Install TT DeepDark theme
- Preferences > Display > Formatting > Fonts & Colors > Colors button, then swap Text and Background colors
- If you write HTML emails: Preferences > Composition > General, then swap Text and Background colors
Logging
1 | MOZ_LOG=SMTP:4,timestamp MOZ_LOG_FILE=tb.log thunderbird |