Questions tagged [thunderbird-addon]

Thunderbird AddOns are extensions for the Mozilla Thunderbird email client, written in XUL and Javascript.

Thunderbird AddOns are extensions for the Mozilla Thunderbird email client. They are written mostly in XUL (a flavor of XML) and Javascript.


Useful links


Related tags

210 questions
0
votes
1 answer

Send a mail automatically in an thunderbird addon

I work on a thunderbird addon and a need to send a mail written in by the addon and not by the user. I try to do this with that but is doesn't work : var am =…
Jeff
  • 11
  • 3
0
votes
2 answers

Mozilla Thunderbird "FiltaQuilla"; JavaScript And Regular Expressions

I have the FiltaQuilla add-on for Thunderbird (http://mesquilla.com/extensions/filtaquilla/) because I wanted to give myself the ability to move messages that match a date range AND the subject line of the message can match any words I specify.…
0
votes
2 answers

Mozilla Thunderbird Addon - Add icon to message header

I would like to add an icon/button next to reply button in MOZILLA THUNDERBIRD. What should I write in XUL file so that icon in message header will be shown?
Viks
  • 878
  • 4
  • 11
  • 18
0
votes
2 answers

char* gets lost on return from C DLL to js-ctypes

I'm working on a Thunderbird extension that will call existing C# code via a C++/CLR intermediary. I've hit a snag that can be reproduced using just the C++/CLR DLL, or a straight C DLL. My function is __declspec(dllexport)char* strTest2() { …
Craig Graham
  • 1,161
  • 11
  • 35
0
votes
1 answer

Thunderbird removes any attempt to make an extension

I might be a complete idiot, so please bear with me if I am. I've been attempting to create an extension for Thunderbird. I quickly googled for an official documentation and followed it as closely as I could. This way, I ended up with a simple…
JeeGee
  • 23
  • 3
0
votes
1 answer

Reading email via thunderbird extension in html format

I am using the function MsgHdrToMimeMessage(aMsgHdr, aCallbackThis, aCallback, aAllowDownload, aOptions) { method from http://mxr.mozilla.org/comm-central/source/mailnews/db/gloda/modules/mimemsg.js#171 to read the…
Vik
  • 8,721
  • 27
  • 83
  • 168
0
votes
1 answer

Open browser in private=incognito mode from Thunderbird extension

I would like to open a URL in private mode from a Thunderbird extension. Right now, the following code works in "standard" non-private mode: try { var eps = Components.classes["@mozilla.org/uriloader/external-protocol-service;1"]. …
gregoiregentil
  • 1,793
  • 1
  • 26
  • 56
0
votes
3 answers

how to do nsIMsgDBHdr permanent change commits

i need some help if possible. I developing an addon which adds an extra StringReference header to a letter during send. After it is in the "Sent" folder I would like to collect threadId (this is ok), and remove the extra StringReference from the…
csikos.balint
  • 1,107
  • 2
  • 10
  • 25
0
votes
1 answer

how to save a Thunderbird message in an extansion

I am trying to write an addon for Thunderbird that saves time saving Messages from Thunderbird, by creating the Filename out of Date, Subject, etc. of the mail. After quite a bit of digging around i found the Command cmd_saveAsFile and the function…
Zoldor
  • 21
  • 5
0
votes
1 answer

create zip file using thunderbird api

I am trying to create a zip file using following code...I have a folder like "D:\smad". i have 2 files in that. and i want to create a zip folder with the name "smad.zip". but i found some code for "Adding a file to a Zip archive".. here am doing…
madas
  • 73
  • 1
  • 5
  • 15
0
votes
1 answer

Better Way to Sanitize HTML for Insertion

In a recent review by the AMO editors, my Thunderbird addon's version was rejected because it "creates HTML from strings containing unsanitized data" - which "is a major security risk". I think I understand why. Now, my problem is about how to…
bgmCoder
  • 6,205
  • 8
  • 58
  • 105
0
votes
1 answer

Thunderbird addon for email address crawler

I am looking for an addon to capture all email addresses to my address book from my Inbox. I know EMail Address Crawler does the same; https://addons.mozilla.org/en-us/thunderbird/addon/email-address-crawler/ However I have the latest Thunderbird…
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
0
votes
1 answer

Creating "OmniFocus Clippings" support for Thunderbird on Mac OS X: what tools and documentation references needed?

I want to add OmniFocus Clippings support to Thunderbird running on Mac OS X (10.6 and above). Presuming it doesn't already exist (I can't get it to work--no references on the web to it working), what tools/references do I need to complete the job?…
Johnny Utahh
  • 2,389
  • 3
  • 25
  • 41
0
votes
1 answer

save email attachments using Thunderbird source

I would like to save email attachments using thunderbird source code. I got the following code in your forums..but its not working alert("Messages selected: " + gFolderDisplay.selectedCount); let enumerator =…
madas
  • 73
  • 1
  • 5
  • 15
0
votes
1 answer

Thunderbird extension: open EML file as draft

After my first question here, I am now looking for a way do the the same, but instead of opening an EML as a message, I want to open it as a draft. Basically, I want to load a generated EML file into the compose window, so I can directly send it. I…
1 2 3
13
14