I'm writing a Thunderbird extension that is currently able to trigger when a compose window is created (by listening to when a new tab is created, and then checking the contents of that tab for ComposeDetails). However, what I need is to know if the user is replying to another message, and if so, what other message they're replying to. That information isn't in the ComposeDetails, and I can't figure out how to find it. Can anyone help?
Thunderbird extensions API - how to get message that's being replied to?
295 views Asked by Cassandra Gelvin At
1
There are 1 answers
Related Questions in THUNDERBIRD
- How do I separate emails (from 1 alias) in Thunderbird from invasive websites on Firefox with file browsing scripts? Should I worry?
- Thunderbird Importing Emails imports 0 emails
- Thunderbird: Get Subject dynamically in HTML Signature
- thunderbird local archive folder missing
- New Thunderbird Plugin: Custom Menu in Message Display Toolbar
- Thunderbird: messenger.messages.listAttachments returns empty array when using pgp
- How to create a secure module policy in SElinux
- Thunderbird/gmail : How to filter emails to receive/read from certified contacts
- restoring Thunderbird filters
- How do I determine the attachment for messages with manifest v3?
- How to debug Typescript code with Thunderbird?
- Thunderbird (v115.3.2 64-bit) Outbox Count of Emails Waiting to be Sent
- How to debug a script in Thunderbird's Quicktext extension
- Assigned tags to mails are lost after update to Thunderbird 115
- keyboard short-cut or add-on to toggle full-screen message?
Related Questions in THUNDERBIRD-WEBEXTENSIONS
- How do I determine the attachment for messages with manifest v3?
- Filter emails which are older than X days only with several "or" statements
- Listening for changes in the address fields
- Thunderbird Extension Development, Log Error Message "Security Error: Content at moz-nullprincipal"
- Send data to thunderbird Add-on from chrome extension
- Thunderbird WebExtensions / MailExtensions development - How to deal with events such as "new mail"?
- Thunderbird tasks api
- Thunderbird extension unexpectedly stops execution
- How to execute / access local file from Thunderbird WebExtension?
- Is it possible to update filter rules in Thunderbird via custom extension?
- Access the clicked item in Thunderbird Add-on
- Webextension thunderbird get attachment
- Send mail with Thunderbird MailExtension
- Thunderbird WebExtension API (v78) : How to change the message display of threads on Thunderbird?
- Thunderbird extensions API - how to get message that's being replied to?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It looks like Thunderbird 88 will support it. The
ComposeDetailsare getting a new attributetype:I have no solution to suggest for older versions.