Thunderbird:Extension Frequently Asked Questions: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(New page: ''please continue to update and add more items to this list as questions are asked and answered in the news group'' === Can a new column be added to the message list view? === Yes, [http:...)
 
(adding to the thunderbird category)
Line 9: Line 9:


Local messages require that you add an envelope header to the beginning of the message (e.g., "From - 01/01/2008"). But you could simply read the .eml file into a string, insert "From " at the beginning of the message, and call AddMessage.
Local messages require that you add an envelope header to the beginning of the message (e.g., "From - 01/01/2008"). But you could simply read the .eml file into a string, insert "From " at the beginning of the message, and call AddMessage.
[[Category:Thunderbird]]

Revision as of 17:52, 5 March 2008

please continue to update and add more items to this list as questions are asked and answered in the news group

Can a new column be added to the message list view?

Yes, Thunderbird Extensions - Creating a Custom Column

Can .eml files on disk be added to the Inbox, or other folders?

Not directly, but you could use nsIMsgFolder::AddMessage(in string aMessage)

Local messages require that you add an envelope header to the beginning of the message (e.g., "From - 01/01/2008"). But you could simply read the .eml file into a string, insert "From " at the beginning of the message, and call AddMessage.