Custom Toolbar Buttons for Thunderbird
If you watched the video and wondered what the JavaScript code was for my "Move Junk" button in Thunderbird, then read on. If you haven't watched the video, this article describes how to add custom toolbar buttons to Thunderbird using the Custom Buttons addon.
The Custom Buttons addon for Thunderbird allows you to add buttons to Thunderbird's toolbar. The addon is simple to use: once it's installed, right click on the toolbar and select "Add new button...", give the button a name, pick an image to use, and then supply some JavaScript code for the button. Well, ok so that last step isn't so easy. Since you need to know how to write JavaScript and you need to know the Thunderbird API. Here's a couple of buttons that I use.
The first empties the Trash folder. My image for it is:
The code is simple:
MsgEmptyTrash();
Enter that under the "Code" tab and you should have a button for emptying the trash.
The second button moves all the junk mail in the current folder to the Junk folder. Thunderbird has the option to do this automatically as it downloads email and classifies it as Junk, but I like to see what's going into the Junk folder beforehand so that I have a chance to police Thunderbird's decisions. My image for this button is:
The code here is much more involved, and I didn't develop it from scratch, I used an existing function that I found in the Thunderbird source that deleted junk in the current folder. All I did is change it so that it moves it rather than deletes it.
//=====================================================================
// Modification of deleteJunkInFolder().
//
function junkJunkInFolder()
{
MsgJunkMailInfo(true);
var view = GetDBView();
// Get junk mail folder.
var msgURI = view.getURIForViewIndex(0);
var msgHdr = messenger.msgHdrFromURI(msgURI);
var server = msgHdr.folder.server;
var spamSettings = server.spamSettings;
var spamFolderURI = spamSettings.spamFolderURI;
var currentFolderURI = msgHdr.folder.folderURL
if ( !spamFolderURI ) {
dump('no spam folder!');
return;
}
//alert("Current folder is: " + currentFolderURI + "\nJunk folder is: " + spamFolderURI);
if ( currentFolderURI == spamFolderURI ) {
//alert("Current folder is the Junk folder");
return;
}
var junkTargetFolder = GetMsgFolderFromUri(spamFolderURI);
// Select junk messages.
// Need to expand all threads, so we find everything
view.doCommand(nsMsgViewCommandType.expandAll);
var treeView = view.QueryInterface(Components.interfaces.nsITreeView);
var count = treeView.rowCount;
if ( !count ) return;
var treeSelection = treeView.selection;
var clearedSelection = false;
for ( var i = 0; i < count; ++i ) {
var messageUri = view.getURIForViewIndex(i);
var msgHdr = messenger.msgHdrFromURI(messageUri);
var junkScore = msgHdr.getStringProperty("junkscore");
var isJunk = ((junkScore != "") && (junkScore != "0"));
// if the message is junk, select it.
if ( isJunk ) {
// only do this once
if ( !clearedSelection ) {
// clear the current selection
// since we will be deleting all selected messages
treeSelection.clearSelection();
clearedSelection = true;
treeSelection.selectEventsSuppressed = true;
}
treeSelection.rangedSelect(i, i, true /* augment */);
}
}
// If we didn't clear the selection there was no junk, so bail.
if ( !clearedSelection ) return;
treeSelection.selectEventsSuppressed = false;
// delete the selected messages
SetNextMessageAfterDelete();
view.doCommandWithFolder(nsMsgViewCommandType.moveMessages, junkTargetFolder);
treeSelection.clearSelection();
}
//=====================================================================
junkJunkInFolder();
I won't explain the code in detail, particularily since I didn't write most of it, but the operation is fairly simple: get a reference to the current folder and the junk folder, then loop through all the messages in the current folder and select the junk messages. After the loop if any messages are selected move them to the junk folder.
| Attachment | Size |
|---|---|
| move-junk.png | 1.4 KB |
| empty-trash.png | 1.84 KB |
Mitch Frazier is an Associate Editor for Linux Journal.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Linux-Based X Terminals with XDMCP
- 100% disappointed with the decision to go all digital.
- Readers' Choice Awards 2011
- Parallel Programming with NVIDIA CUDA
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- The Linux RAID-1, 4, 5 Code
- Python for Android





2 hours 57 min ago
3 hours 8 min ago
9 hours 12 min ago
12 hours 37 min ago
13 hours 43 min ago
13 hours 55 min ago
18 hours 58 min ago
19 hours 21 min ago
19 hours 24 min ago
21 hours 47 min ago