Show Inbox when starting Thunderbird: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(Mention -mail switch)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
If you want Thunderbird to open directly in your Inbox when you launch the application, go to "Tools -> Account Settings -> Server Settings" and check the box that says "Check for new messages at startup."  
Usually if you go to "Tools -> Account Settings -> Account Name -> Server Settings" and check the box that says "Check for new messages at startup" Thunderbird will start in the Inbox folder. If you have more than one account, Thunderbird will start in the Inbox of your default account, which is the account displayed at the top of the folders pane. To make another account into your default account, go to "Tools -> Account Settings", select the account you want to make the default, and click the "Set as Default" button.


If you have more than one account, Thunderbird will start up in the Inbox of your default account, which is the account displayed at the top of the folders pane. To make another account into your default account, go to "Tools -> Account Settings", select the account you want to make the default, and click the "Set as Default" button.
However, that doesn't always work in recent versions. There are a couple of add-ons you can use as workarounds.
 
* <s>The [https://addons.mozilla.org/en-US/thunderbird/addon/select-inbox/ Select Inbox] add-on specifies the startup folder.</s> 
* The [https://addons.mozilla.org/en-us/thunderbird/addon/manually-sort-folders/ Manually Sort Folders] add-on lets you customize the folder pane. Accounts can be rearranged and the startup folder chosen. It replaces the [https://addons.mozilla.org/en-US/thunderbird/addon/folderpane-tools/ Folderpane Tools] add-on which is no longer maintained, and apparently doesn't support version 38.1.0 or later. If that version doesn't work, try the version at https://github.com/Ximi1970/Manually-Sort-Folders/releases.
 
If neither add-on works around the problem it might be because you changed '''mail.server.login.at.startup''' , which defaults to true. [http://forums.mozillazine.org/viewtopic.php?p=14722692#p14722692]


==Opening some other folder==
==Opening some other folder==
If you want to override the normal startup folder, so that Thunderbird will open in any folder of your choice when it starts up, then change the command that you use to start Thunderbird.  For example, the command might be in the properties of an icon on your desktop.  At the end of the command, add <code>-mail</code> followed by the URI of the folder that you want to open.
You can also specify any folder as the startup folder (it doesn't have to be an inbox) by changing the command used to start Thunderbird.  For example, the command might be in the properties of an icon on your desktop.  At the end of the command, add <code>-mail</code> followed by the [[Folder URIs|URI]] of the folder that you want to open.
 
If you are using Windows 10 right click on the Thunderbird shortcut in the taskbar, then right click on "thunderbird.exe - Shortcut", select Properties from the list box, and select the shortcut tab (if it isn't selected by default). Find the target field and add -mail, a space and the URI of the folder.
 
For example, if you want to open the inbox folder for a gmail POP account:
 
"C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail mailbox://someone@pop.gmail.com/Inbox


For example, here is a command that starts Thunderbird on Windows, opening a Templates folder:
If you want to open a Templates folder in the same POP account:


  "C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail mailbox://someone@pop.example.net/Templates
  "C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail mailbox://someone@pop.gmail.com/Templates


You can use this method to make a collection of icons that directly open various folders.
If you want to open the inbox in the Local Folders special account you need to use double quotes due to the embedded space:


==Using an extension==
"C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail "mailbox://Local Folders/Inbox"
Alternatively, use the [https://addons.mozilla.org/extensions/moreinfo.php?application=thunderbird&id=258 Folderpane Tools extension] to specify the initial folder. Make sure to read the usage instructions at the extension author's [http://www.chuonthis.com/extensions/folderpane.php homepage].


==See also==
==See also==

Latest revision as of 21:00, 30 March 2019

Usually if you go to "Tools -> Account Settings -> Account Name -> Server Settings" and check the box that says "Check for new messages at startup" Thunderbird will start in the Inbox folder. If you have more than one account, Thunderbird will start in the Inbox of your default account, which is the account displayed at the top of the folders pane. To make another account into your default account, go to "Tools -> Account Settings", select the account you want to make the default, and click the "Set as Default" button.

However, that doesn't always work in recent versions. There are a couple of add-ons you can use as workarounds.

If neither add-on works around the problem it might be because you changed mail.server.login.at.startup , which defaults to true. [1]

Opening some other folder

You can also specify any folder as the startup folder (it doesn't have to be an inbox) by changing the command used to start Thunderbird. For example, the command might be in the properties of an icon on your desktop. At the end of the command, add -mail followed by the URI of the folder that you want to open.

If you are using Windows 10 right click on the Thunderbird shortcut in the taskbar, then right click on "thunderbird.exe - Shortcut", select Properties from the list box, and select the shortcut tab (if it isn't selected by default). Find the target field and add -mail, a space and the URI of the folder.

For example, if you want to open the inbox folder for a gmail POP account:

"C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail mailbox://someone@pop.gmail.com/Inbox

If you want to open a Templates folder in the same POP account:

"C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail mailbox://someone@pop.gmail.com/Templates

If you want to open the inbox in the Local Folders special account you need to use double quotes due to the embedded space:

"C:\Program Files\Mozilla Thunderbird\thunderbird.exe" -mail "mailbox://Local Folders/Inbox"

See also