======================================= Thunderbird Fixes --------------------------------------- Some things I do right out of the box. Tools > Add-ons and Themes > Search [ Full Address column ] <---- always show full email address of sender and recipients Edit > Settings > General > Display name: [ ] Show only display name for people in my address book <----- UNCHECK this Edit > Settings > General > [Config Editor...] change: mail.chat.enabled false <---- disable chat mail.compose.default_to_paragraph false <---- default to body text mail.identity.default.archive_enabled false <---- disable archive mail.ui.display.dateformat.today 2 <---- always show the full date and time create string: intl.date_time.pattern_override.date_short yyyy-MM-dd <---- default to a proper ISO date telemetry: datareporting.healthreport.uploadEnabled false datareporting.policy.dataSubmissionEnabled false dom.security.unexpected_system_load_telemetry_enabled false network.trr.confirmation_telemetry_enabled false privacy.trackingprotection.origin_telemetry.enabled false telemetry.origin_telemetry_test_mode.enabled false toolkit.telemetry.archive.enabled false toolkit.telemetry.bhrPing.enabled false toolkit.telemetry.ecosystemtelemetry.enabled false toolkit.telemetry.enabled false toolkit.telemetry.firstShutdownPing.enabled false toolkit.telemetry.newProfilePing.enabled false toolkit.telemetry.server http://any.bogus.url/ toolkit.telemetry.shutdownPingSender.enabled false toolkit.telemetry.shutdownPingSender.enabledFirstSession false toolkit.telemetry.updatePing.enabled false toolkit.telemetry.unified false Edit > Settings > Privacy & Security > Thunderbird Data Collection and Use [ ] <----- uncheck this ======================================= Command Line Launch of Thunderbird Shows Wrong Time in Date Column --------------------------------------- Problem appears to be that Thunderbird does not default to /etc/localtime. You need an exported TZ variable in .shrc for the correct dates to show when run from a shell. cat << EOF >> ~/.shrc TZ=America/Toronto; export TZ EOF Open a new shell or sh ~/.shrc or logout and login, then run thunderbird. ======================================= KDE GUI Launch of Thunderbird Shows Wrong Time in Date Column --------------------------------------- Problem appears to be that Thunderbird does not default to /etc/localtime. You need an exported TZ variable in .profile for the correct dates to show when launched from the gui. cat << EOF >> ~/.profile TZ=America/Toronto; export TZ EOF Alternatively add variable to KDE Launcher: Menu Editor > find Thunderbird > Environment Variables: TZ=America/Toronto Logout and login, then launch thunderbird. ======================================= end =======================================