mailTabs API
The mailTabs API allows to interact with Thunderbird’s main mail window.
Functions
create([createProperties])
– [Added in TB 121]
Creates a new mail tab. Standard tab properties can be adjusted via update([tabId], updateProperties) after the mail tab has been created. Note: A new mail window can be created via create([createData]).
Parameters
get(tabId)
Get the MailTab properties of a mail tab.
Parameters
tabId
(integer)
ID of the requested mail tab. Throws if the requested tabId does not belong to a mail tab.
getListedMessages([tabId])
– [Added in TB 121]
Lists the messages in the current view, honoring sort order and filters.
Parameters
[tabId
]
(integer, optional)
Defaults to the active tab of the current window.
Return type (Promise)
Required permissions
getSelectedFolders([tabId])
– [Added in TB 128]
Lists the selected folders in the folder pane.
Parameters
[tabId
]
(integer, optional)
Defaults to the active tab of the current window.
Return type (Promise)
array of MailFolder
Required permissions
getSelectedMessages([tabId])
Lists the selected messages in the current folder.
Parameters
[tabId
]
(integer, optional)
Defaults to the active tab of the current window.
Return type (Promise)
Required permissions
query([queryInfo])
Gets all mail tabs that have the specified properties, or all mail tabs if no properties are specified.
Parameters
[queryInfo
]
(object, optional)
[active
]
(boolean, optional)
Whether the tabs are active in their windows.
[currentWindow
]
(boolean, optional)
Whether the tabs are in the current window.
[lastFocusedWindow
]
(boolean, optional)
Whether the tabs are in the last focused window.
[windowId
]
(integer, optional)
The ID of the parent window, or WINDOW_ID_CURRENT for the current window.
setQuickFilter([tabId], properties)
Sets the Quick Filter user interface based on the options specified.
Parameters
[tabId
]
(integer, optional)
Defaults to the active tab of the current window.
properties
(object)
[attachment
]
(boolean, optional)
Shows only messages with attachments.
[contact
]
(boolean, optional)
Shows only messages from people in the address book.
[flagged
]
(boolean, optional)
Shows only flagged messages.
[show
]
(boolean, optional)
Shows or hides the Quick Filter bar.
Shows only messages with tags on them.
Shows only messages matching the supplied text.
[unread
]
(boolean, optional)
Shows only unread messages.
setSelectedMessages([tabId], messageIds)
Selects none, one or multiple messages.
Parameters
[tabId
]
(integer, optional)
Defaults to the active tab of the current window.
The IDs of the messages, which should be selected. The mail tab will switch to the folder of the selected messages. Throws if they belong to different folders. Array can be empty to deselect any currently selected message.
Required permissions
update([tabId], updateProperties)
Modifies the properties of a mail tab. Properties that are not specified in updateProperties are not modified.
Parameters
[tabId
]
(integer, optional)
Defaults to the active tab of the current window.
Events
onDisplayedFolderChanged
Fired when the displayed folder changes in any mail tab.
Parameters for onDisplayedFolderChanged.addListener(listener)
listener(tab, displayedFolder)
A function that will be called when this event occurs.
Parameters passed to the listener function
- Changes in TB 76:
previously just the tab’s ID
Required permissions
onSelectedMessagesChanged
Fired when the selected messages change in any mail tab.
Parameters for onSelectedMessagesChanged.addListener(listener)
listener(tab, selectedMessages)
A function that will be called when this event occurs.
Parameters passed to the listener function
- Changes in TB 76:
previously just the tab’s ID
Required permissions
Types
FolderMode
A supported folder mode in the folder pane.
string
Supported values:
all
unified
tags
unread
favorite
recent
MailTab
object
active
(boolean)
layout
(string)
The arrangement of the folder pane, message list pane, and message display pane.
Supported values:
standard
wide
vertical
tabId
(integer)
viewType
– [Added in TB 91]
windowId
(integer)
The folder displayed in the mail tab. The
permission is required for this property to be included.The folder mode of the currently displayed folder.
The enabled folder modes in the folder pane, and their sort order.
[folderPaneVisible
]
(boolean, optional)
Whether the folder pane is visible or not.
[groupType
]
(string, optional)
Grouping type of the message list.
Supported values:
ungrouped
groupedByThread
groupedBySortType
[messagePaneVisible
]
(boolean, optional)
Whether the message pane is visible or not.
[sortOrder
]
(string, optional)
The sort order of the message list.
Supported values:
none
ascending
descending
[sortType
]
(string, optional)
The primary sort column of the message list.
Supported values:
none
date
subject
author
id
thread
priority
status
size
flagged
unread
recipient
location
tags
junkStatus
attachments
account
custom
received
correspondent
MailTabProperties
object
Sets the folder displayed in the mail tab. Requires the
permission. The previous message selection in the given folder will be restored, if any.Sets the currently used folder mode, enabling it if required. If used without also specifying displayedFolder, the currently selected folder is re-selected in the new folder mode, if possible.
Set the enabled folder modes in the folder pane, and their sort order.
[folderPaneVisible
]
(boolean, optional)
Shows or hides the folder pane.
[groupType
]
(string, optional)
Grouping type of the message list.
Supported values:
ungrouped
groupedByThread
groupedBySortType
[layout
]
(string, optional)
Sets the arrangement of the folder pane, message list pane, and message display pane. Note that setting this applies it to all mail tabs.
Supported values:
standard
wide
vertical
[messagePaneVisible
]
(boolean, optional)
Shows or hides the message display pane.
[sortOrder
]
(string, optional)
Sorts the list of messages. sortType must also be given.
Supported values:
none
ascending
descending
[sortType
]
(string, optional)
Sorts the list of messages. sortOrder must also be given.
Supported values:
none
date
subject
author
id
thread
priority
status
size
flagged
unread
recipient
location
tags
junkStatus
attachments
account
custom
received
correspondent
QuickFilterTextDetail
object
text
(string)
String to match against the recipients, author, subject, or body.
[author
]
(boolean, optional)
Shows messages where text matches the author.
[body
]
(boolean, optional)
Shows messages where text matches the message body.
[recipients
]
(boolean, optional)
Shows messages where text matches the recipients.
[subject
]
(boolean, optional)
Shows messages where text matches the subject.