pastisman

About me

Developer Information
Name pastisman
User since June 27, 2008
Number of add-ons developed 6 add-ons
Average rating of developer's add-ons Rated 4 out of 5 stars

Add-ons I've created

Prevent Delete Requires Restart

Prevent deletion of messages with a defined tag.

Rated 4 out of 5 stars (19)
22 users

My Reviews

Reply to Multiple Messages

Rated 5 out of 5 stars

Great add-on. A must have that should be a default features in Thunderbird.

This review is for a previous version of the add-on (1.0). 

Slideshow

Rated 5 out of 5 stars

@geon.cz : I've wrote an email to Aleks Totic and he has quickly replied. He'll normally add me as a developer so I'll put the new version here soon.

This review is for a previous version of the add-on (1.3).  This user has a previous review of this add-on.

Slideshow

Rated 5 out of 5 stars

I've put an upgrated version on my website http://lucdischert.free.fr/fichiers/slideshow-1.3-tb.xpi with the ability to rotate the picture when clicking on it (shift-clic to rotate anticlockwise). I'll be glad to give it to one of the original authors so the update could be done automatically from here for all users.

This review is for a previous version of the add-on (1.3). 

Attachment Sizes

Rated 5 out of 5 stars

@samsie : Email size yes, but not the size of each attachment.
I've put an update for TB3 here : https://addons.mozilla.org/fr/thunderbird/addon/75780 waiting for Frank DiLecce to get it if he wants to.

Purge!

Rated 2 out of 5 stars

Hi,
With the Custom buttons extension , simply add a button with the code :

var acctMgr = Components.classes["@mozilla.org/messenger/account-manager;1"].getService(Components.interfaces.nsIMsgAccountManager);
var accounts = acctMgr.accounts;
for (var i = 0; i < accounts.Count(); i++) {
var account = accounts.QueryElementAt(i, Components.interfaces.nsIMsgAccount);
var rootFolder = account.incomingServer.rootFolder; // nsIMsgFolder
if (rootFolder.hasSubFolders)
{
var subFolders = rootFolder.subFolders; // nsIMsgFolder
while(subFolders.hasMoreElements())
{
var folder = subFolders.getNext().QueryInterface(Components.interfaces.nsIMsgFolder);
if( folder.flags & 0x0100 ) try { folder.emptyTrash(null, null); } catch(ex) {}
}
}
}
goDoCommand('cmd_compactFolder');

in it.

ThreadKey

Rated 2 out of 5 stars

Hi, the T keyset is already used to go to next unread thread.
I've prefered to install keyconfig extension and put whatever key I want for MsgSortThreaded(); and MsgSortUnthreaded(); commands !!!

This review is for a previous version of the add-on (0.5).