OSX version: how to set extension preferencies?

User Help for Mozilla Thunderbird
Post Reply
mailmasterc
Posts: 3
Joined: May 17th, 2020, 7:33 am

OSX version: how to set extension preferencies?

Post by mailmasterc »

Hi all,

I installed two extensions to remove duplicate emails in my mailboxes: "Remove Duplicate Messages (alternate)" (https://removedupes.mozdev.org/) and "Remove Duplicate" (https://addons.thunderbird.net/en-US/th ... uplicates/). In both extensions it should be possible to set some preferences, wich criteria to use to compare the single messages. In the Windows version of Thunderbird the preferences are easy to find and check, but in the OSX version I am not able to find these preferences.
If I go under "Tool/Extension Preferences" Menu it is empty. I tried selecting the extension, right click it, almost everything, but I am not able to access them.

Is this a bug or am I dumb? :)

I use Thunderbird 68.8.0 on OSX and all the extensions are up to date.

Thank you for your help.
User avatar
LIMPET235
Moderator
Posts: 39961
Joined: October 19th, 2007, 1:53 am
Location: The South Coast of N.S.W. Oz.

Re: OSX version: how to set extension preferencies?

Post by LIMPET235 »

Moving to the Thunderbird Support forum...

Why do you need two extensions that perform the same action?
You might strike a little conflict running both.
[Ancient Amateur Astronomer.]
Win-10-H/64 bit/500G SSD/16 Gig Ram/450Watt PSU/350WattUPS/Firefox-115.0.2/T-bird-115.3.2./SnagIt-v10.0.1/MWP-7.12.125.

(Always choose the "Custom" Install.)
mailmasterc
Posts: 3
Joined: May 17th, 2020, 7:33 am

Re: OSX version: how to set extension preferencies?

Post by mailmasterc »

You are right, actually I need only one! :) I installed both since I wasn't able to see the preferences for the first extensions, and I tought probably there is some bugs on it. Then I tried the second one, unfortunately with the same result: no preferencies. Of course I can delete one of the two once I'm done.
Beside, they work only when I hit the command, so it shouldn't be any conflict between them.
Thanks anyway.
morat
Posts: 6436
Joined: February 3rd, 2009, 6:29 pm

Re: OSX version: how to set extension preferencies?

Post by morat »

Here is how to open the option page for the Remove Duplicates addon in Windows.

Tools > Add-ons Options > Remove Duplicates

Here is how to open the dialog using the error console in the developer tools.

Code: Select all

window.openDialog("chrome://removedupes/content/removedupesprefs.xul", "removedupesprefs", "chrome");
Here is the prefs.js file.

Code: Select all

pref("extensions.removedupes.autodelete", false);
pref("extensions.removedupes.checkauthor", true);
pref("extensions.removedupes.checkbody", false);
pref("extensions.removedupes.checkdate", false);
pref("extensions.removedupes.checkdateinseconds", true);
pref("extensions.removedupes.checklinecount", false);
pref("extensions.removedupes.checkmessageid", true);
pref("extensions.removedupes.checkrecipient", false);
pref("extensions.removedupes.checksubject", true);
pref("extensions.removedupes.debuginfo", false);
pref("extensions.removedupes.excludeArchives", false);
pref("extensions.removedupes.excludeSentfolder", true);
pref("extensions.removedupes.excludeTrashcan", true);
pref("extensions.removedupes.ignoreSubFolders", false);
pref("extensions.removedupes.prefereddelete", 0);
pref("extensions.removedupes.reversesearch", false);
pref("extensions.removedupes.showDuplicatesDialog", false);
pref("extensions.removedupes.subfolderfirst", false);
Sorry, I don't use OSX.

P.S.

Other devs have noticed the bug in OSX.
jeevatkm wrote:It seems TB has some bug, sometimes it does not show up the options for me.
Comment about ReplyWithHeader
http://github.com/jeevatkm/ReplyWithHea ... -544222538
http://addons.thunderbird.net/thunderbi ... s/1162041/

Bug report
http://bugzilla.mozilla.org/show_bug.cgi?id=1611349

Workaround by sfhowes
http://support.mozilla.org/questions/1278185
mailmasterc
Posts: 3
Joined: May 17th, 2020, 7:33 am

Re: OSX version: how to set extension preferencies?

Post by mailmasterc »

OMG!
Thank you Morat, the workaround you suggested works also for me. And like the other user in the thread, I have never noticed the 3 bar app Menu until now! :)

Thanks a lot!
morat
Posts: 6436
Joined: February 3rd, 2009, 6:29 pm

Re: OSX version: how to set extension preferencies?

Post by morat »

You're welcome.

I knew about the hamburger button, but I forgot about the addon options in the hamburger menu. (hat tip to sfhowes)
Post Reply