Thunderbird

From Organic Design wiki
Revision as of 15:09, 21 March 2022 by Nad (talk | contribs) (Fixing date format)
Cone.png This article or section is a stub. Stubs are articles that have not yet received substantial attention from the authors. They are short or insufficient pieces of information and require additions to further increase the article's usefulness. The project values stubs as useful first steps toward complete articles.


Addons

I want to write a simple addon that tags a message if there are custom headers present so that I cab have the server add tags based on various criteria.

Fixing date format

In some versions the date format gets stuck on US no matter what your locale or preference is. One way I've found to force it to the correct format is to create a shell script to set LC_TIME before launching, e.g.

#/bin/sh
export LC_TIME=en_GB.UTF-8
/usr/bin/thunderbird

Remember to chmod +x your script, and you may also need to enable en_GB.UTF-8 by running dpkg-reconfigure locales if you don't already have that locale set. Once all that's done, change the launcher command in /usr/share/applications/thunderbird.desktop to your new script.

See also