Difference between revisions of "Thunderbird"
From Organic Design wiki
m (→Addons: These instructions look a bit clearer) |
(date issue) |
||
Line 6: | Line 6: | ||
*http://www-archive.mozilla.org/docs/tutorials/tinderstatus/ | *http://www-archive.mozilla.org/docs/tutorials/tinderstatus/ | ||
*[https://developer.mozilla.org/en-US/Add-ons/Thunderbird/Building_a_Thunderbird_extension These instructions look a bit clearer] | *[https://developer.mozilla.org/en-US/Add-ons/Thunderbird/Building_a_Thunderbird_extension These instructions look a bit clearer] | ||
+ | |||
+ | == 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 (remember to ''chmod +x'' it) to set ''LC_TIME'' before launching, e.g. | ||
+ | <source lang="bash"> | ||
+ | #/bin/sh | ||
+ | export LC_TIME=en_GB.UTF-8 | ||
+ | /usr/bin/thunderbird | ||
+ | </source> | ||
+ | Then change the launch command in ''/usr/share/applications/thunderbird.desktop'' to the new script. | ||
== See also == | == See also == | ||
*[[Firefox]] | *[[Firefox]] |
Revision as of 15:00, 21 March 2022
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.
- http://www-archive.mozilla.org/projects/thunderbird/specs/extensions.html
- http://www-archive.mozilla.org/docs/tutorials/tinderstatus/
- These instructions look a bit clearer
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 (remember to chmod +x it) to set LC_TIME before launching, e.g.
#/bin/sh
export LC_TIME=en_GB.UTF-8
/usr/bin/thunderbird
Then change the launch command in /usr/share/applications/thunderbird.desktop to the new script.