User Help for Mozilla Thunderbird
Somebody
Posts: 87Joined: January 20th, 2006, 9:17 am
Posted September 12th, 2018, 10:41 am
@morat: There's an official fix for Mailbox Alert now: https://tjeb.nl/Projects/Mailbox_Alert/ (version 0.18.0) Thanks for the RRButtonAndIcon fix. CardBook is a new address book for Thunderbird and the functionality is for the contacts in the Card Book. This will just work if you're willing to replace the default address book and lose addon functionality relying on the contact information from there.
morat
Posts: 3480Joined: February 3rd, 2009, 6:29 pm
Posted September 20th, 2018, 10:56 am
boersenfeger

Posts: 36Joined: September 1st, 2010, 3:12 amLocation: Braunschweig, Nds, Deutschland
Posted October 13th, 2018, 5:09 am
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0.1 Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:67.0) Gecko/20190219 Firefox/67a1 Visit the German Firefox-Forum wwx. camp-firefox.de/forum
morat
Posts: 3480Joined: February 3rd, 2009, 6:29 pm
Posted October 16th, 2018, 8:20 am
Search as list 3.1 [Does nothing] AFAICT, I got the Search as list extension working correctly in Thunderbird 60. Fix: http://github.com/morat523035/SearchAsList* install.rdf - Code: Select all
- <em:version>3.1</em:version> + <em:version>3.1.1</em:version>
- Code: Select all
- <em:maxVersion>38.*</em:maxVersion> + <em:maxVersion>60.*</em:maxVersion>
* chrome\content\overlay.js The id of the tab container in the 3pane window has changed from "tabcontainer" to "tabmail-tabs" so replace document.getElementById("tabcontainer") with document.getElementById("tabmail-tabs") globally. I believe there are 9 lines to change. - Code: Select all
- for each (let constraint in tab.query._constraints) { + for (let constraint of tab.query._constraints) {
- Code: Select all
- var colShow = prefs.getComplexValue("colShow",Components.interfaces.nsISupportsString).data; - var colClick = prefs.getComplexValue("colClick",Components.interfaces.nsISupportsString).data; + var colShow = prefs.getStringPref("colShow"); + var colClick = prefs.getStringPref("colClick");
- Code: Select all
- prefs.setComplexValue("colShow",Components.interfaces.nsISupportsString, strshow); + prefs.setStringPref("colShow", strshow);
* chrome\content\options.js - Code: Select all
- var colShow = prefs.getComplexValue("colShow",Components.interfaces.nsISupportsString).data; - var colClick = prefs.getComplexValue("colClick",Components.interfaces.nsISupportsString).data; + var colShow = prefs.getStringPref("colShow"); + var colClick = prefs.getStringPref("colClick");
- Code: Select all
- prefs.setComplexValue("colShow",Components.interfaces.nsISupportsString, strshow); - prefs.setComplexValue("colClick",Components.interfaces.nsISupportsString, strclick); + prefs.setStringPref("colShow", strshow); + prefs.setStringPref("colClick", strclick);
* chrome\content\options.xul - Code: Select all
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> + <?xml-stylesheet href="chrome://messenger/skin/preferences/preferences.css" type="text/css"?>
Search as list http://addons.thunderbird.net/thunderbird/addon/475804Edit: Search as list has been updated.
Last edited by morat on January 29th, 2019, 9:37 am, edited 2 times in total.
morat
Posts: 3480Joined: February 3rd, 2009, 6:29 pm
Posted November 6th, 2018, 4:34 pm
AutoUp options window is broken in Thunderbird 60. Fix: * install.rdf - Code: Select all
- <em:version>1.03</em:version> + <em:version>1.03.1</em:version>
- Code: Select all
- <em:maxVersion>13.*</em:maxVersion> + <em:maxVersion>60.*</em:maxVersion>
* chrome\content\AutoUp-options.xul - Code: Select all
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> + <?xml-stylesheet href="chrome://messenger/skin/preferences/preferences.css" type="text/css"?>
AutoUp http://addons.thunderbird.net/thunderbird/addon/368166
cadudesun
Posts: 46Joined: December 13th, 2011, 3:37 am
Posted November 11th, 2018, 7:38 am
Hi, I tried many times to perform the fix suggest below for "Search as list 3.1", however, TB 60.3 keeps rejecting the modified search-as-list@pso.ebr.xpiCould anyone who was successful with the "fix" share the modified search-as-list@pso.ebr.xpi file? Thank you very much! Cadu morat wrote:Search as list 3.1 [Does nothing] AFAICT, I got the Search as list extension working correctly in Thunderbird 60. Fix: * install.rdf - Code: Select all
- <em:version>3.1</em:version> + <em:version>3.1.1</em:version>
- Code: Select all
- <em:maxVersion>38.*</em:maxVersion> + <em:maxVersion>60.*</em:maxVersion>
* chrome\content\overlay.js The id of the tab container in the 3pane window has changed from "tabcontainer" to "tabmail-tabs" so replace document.getElementById("tabcontainer") with document.getElementById("tabmail-tabs") globally. I believe there are 9 lines to change. - Code: Select all
- for each (let constraint in tab.query._constraints) { + for (let constraint of tab.query._constraints) {
- Code: Select all
- var colShow = prefs.getComplexValue("colShow",Components.interfaces.nsISupportsString).data; - var colClick = prefs.getComplexValue("colClick",Components.interfaces.nsISupportsString).data; + var colShow = prefs.getStringPref("colShow"); + var colClick = prefs.getStringPref("colClick");
- Code: Select all
- prefs.setComplexValue("colShow",Components.interfaces.nsISupportsString, strshow); + prefs.setStringPref("colShow", strshow);
* chrome\content\options.js - Code: Select all
- var colShow = prefs.getComplexValue("colShow",Components.interfaces.nsISupportsString).data; - var colClick = prefs.getComplexValue("colClick",Components.interfaces.nsISupportsString).data; + var colShow = prefs.getStringPref("colShow"); + var colClick = prefs.getStringPref("colClick");
- Code: Select all
- prefs.setComplexValue("colShow",Components.interfaces.nsISupportsString, strshow); - prefs.setComplexValue("colClick",Components.interfaces.nsISupportsString, strclick); + prefs.setStringPref("colShow", strshow); + prefs.setStringPref("colClick", strclick);
* chrome\content\options.xul - Code: Select all
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> + <?xml-stylesheet href="chrome://messenger/skin/preferences/preferences.css" type="text/css"?>
Search as list http://addons.thunderbird.net/thunderbird/addon/475804
morat
Posts: 3480Joined: February 3rd, 2009, 6:29 pm
Posted November 11th, 2018, 12:30 pm
@cadudesun
Okay. I sent a link in a private message.
fdisk2k

Posts: 88Joined: November 6th, 2007, 3:21 pmLocation: Lima - Peru
Posted November 12th, 2018, 9:45 am
Hello morat, I'm trying to fix the second part of the tweak but I can't find the line in content\quotecolors\qc_overlay.js Here's what I have:  Could you please give me a hint how can I add the last part of the code lines? I want this addon work together with Reply with Header addon. Thanks for your time. Regards morat wrote:AFAICT, I got the Quote Colors extension working correctly in Thunderbird 60. Fix: * install.rdf - Code: Select all
- <em:version>0.3.1-let-fixed</em:version> + <em:version>0.3.1.1</em:version>
- Code: Select all
- <em:maxVersion>3.0.*</em:maxVersion> + <em:maxVersion>60.*</em:maxVersion>
* content\quotecolors\qc_overlay.js - Code: Select all
- this.oPrefServ.QueryInterface(Components.interfaces.nsIPrefBranchInternal); + this.oPrefServ.QueryInterface(Components.interfaces.nsIPrefBranch);
Quote Colors http://addons.thunderbird.net/thunderbird/addon/170
12º 12' S
77º 03' W
morat
Posts: 3480Joined: February 3rd, 2009, 6:29 pm
Posted November 12th, 2018, 11:06 am
@fdisk2k
The qc_overlay.js file is in the quotecolors.jar file.
The quotecolors.jar file is in the quote_colors-0.3-tb+sm.xpi file.
The .jar and .xpi files are renamed .zip files.
fdisk2k

Posts: 88Joined: November 6th, 2007, 3:21 pmLocation: Lima - Peru
Posted November 12th, 2018, 3:29 pm
OK Thanks
12º 12' S
77º 03' W
cadudesun
Posts: 46Joined: December 13th, 2011, 3:37 am
Posted November 13th, 2018, 1:38 am
morat wrote:@cadudesun
Okay. I sent a link in a private message.
THANK YOU VERY MUCH!
morat
Posts: 3480Joined: February 3rd, 2009, 6:29 pm
Posted November 24th, 2018, 7:34 pm
Zoom Button 0.0.8 [Statusbar broken] I got the Zoom Button extension working correctly in Thunderbird 60. Fix: * install.rdf - Code: Select all
- <em:version>0.0.8</em:version> + <em:version>0.0.8.1</em:version>
- Code: Select all
- <em:maxVersion>35.0a1</em:maxVersion> + <em:maxVersion>60.*</em:maxVersion>
* chrome\content\browser.xul - Code: Select all
- <statusbar id="status-bar"> - <statusbarpanel class="statusbarpanel-iconic" - id="zoom-button-status" - oncommand="if (event.shiftKey) goDoCommand('cmd_fullZoomReset');" - onclick="tbclickZoomButton.onClick(event);" - src="chrome://tbclick-zoom/skin/click-small.png" - tooltiptext="Zoom Controls" /> - </statusbar> + <statusbar id="status-bar"> + <statusbarpanel> + <toolbarbutton id="zoom-button-status" + oncommand="if (event.shiftKey) goDoCommand('cmd_fullZoomReset');" + onclick="tbclickZoomButton.onClick(event);" + image="chrome://tbclick-zoom/skin/click-small.png" + tooltiptext="Zoom Controls" /> + </statusbarpanel> + </statusbar>
Zoom Button http://addons.thunderbird.net/thunderbird/addon/364710
Return to Thunderbird Support
Who is online
Users browsing this forum: No registered users and 6 guests
|