Abra la carpeta de correo electrónico en Thunderbird (v102.7.1) usando la línea de comando de Windows

Abra la carpeta de correo electrónico en Thunderbird (v102.7.1) usando la línea de comando de Windows

Estoy intentando abrir una carpeta de correo electrónico específica en Thunderbird (v102.7.1), usando elargumentos de línea de comando.

Ya descubrí que usar thunderbird.exe mid:<MESSAGE-ID>abrirá el correo electrónico con <MESSAGE-ID>.

¿Existe alguna forma de abrir una carpeta de correo electrónico con un método similar o con la línea de comando en general?

Ya lo intenté:

  • thunderbird.exe mid:<FOLDER-LOCATION>
  • thunderbird.exe mail:<FOLDER-LOCATION>
  • thunderbird.exe inbox:<FOLDER-LOCATION>
  • thunderbird.exe <FOLDER-LOCATION>
  • thunderbird.exe label:<LABEL>
  • thunderbird.exe -mail label:<LABEL>
  • thunderbird.exe -mail -folder "mailbox://imap.<PROVIDER>.de/Inbox
  • thunderbird.exe -mail <ACCOUNT NAME>/<NAMESPACE>/INBOX

y varias cosas más que ya no recuerdo.

Respuesta1

Por alguna razón, el siguiente comando abre algunas carpetas comoBorradoresyPlantillas, pero noTodo el correo.

thunderbird -mail "imap://[email protected]/[Gmail]/Drafts"
thunderbird -mail "imap://[email protected]/[Gmail]/Templates"
thunderbird -mail "imap://[email protected]/[Gmail]/All Mail"

Primero instalé el complemento Thunderbird.Navegación rápida con teclas de carpetaque busca la carpeta especificada con F4la clave:
https://addons.thunderbird.net/en-us/thunderbird/addon/quick-folder-key-navigation/

Luego hice este scriptCarpeta específica abierta de Thunderbird.ahkusandoAutoHotkeyque utiliza el complemento:

folder := "All Mail"  ; folder
Run, thunderbird  ; Thunderbird
WinWait, Mozilla Thunderbird ahk_class MozillaWindowClass ahk_exe thunderbird.exe  ; Thunderbird
WinActivate, Mozilla Thunderbird ahk_class MozillaWindowClass ahk_exe thunderbird.exe  ; Thunderbird
Loop
{
    CoordMode, Pixel, Screen
    PixelSearch, FoundX, FoundY, -5000, -5000, 5000, 5000, 0x1373D9, 0, Fast RGB  ; Wait For New Message Button Color
}
Until ErrorLevel = 0
Sleep, 300  ; Wait For Thunderbird Window
Send, {F4}  ; Search For Folder
Sleep, 300
Clipboard := ""
Clipboard := folder
Sleep, 1
Send, ^v  ; Send Folder Name
Sleep, 300
Send, {Enter}  ; Enter
Sleep, 300
ExitApp  ; ExitApp

información relacionada