Showing questions tagged: Show all questions

Thunderbird freezes a few minutes after starting to write an email

I'm using Win 11 and ver 140.3.1esr (64 bit) Thunderbird works perfectly except for just one thing. Every time I write any email it freezes after about 2 minutes. If it'… (read more)

I'm using Win 11 and ver 140.3.1esr (64 bit)

Thunderbird works perfectly except for just one thing. Every time I write any email it freezes after about 2 minutes. If it's a short email, it gets sent. If it's longer, before I can get to the end, the program freezes, and I have to use Task Manager to stop it. No problem receiving and reading emails. This started about a month ago.

I use Bitdefender, but it still happens with that off. Windows is up to date. Any ideas why this is happening? Thanks.

Asked by jmt Duela 22 ordu

Last reply by jmt Duela 16 minutu

Thunderbird very slow to send emails (Fedora)

Hi I was using TB 142 without problems. When upgrading to 143 ou 144.B4 I have problems sending mails to all users after some times. Usually the first mails are sent imme… (read more)

Hi I was using TB 142 without problems. When upgrading to 143 ou 144.B4 I have problems sending mails to all users after some times. Usually the first mails are sent immediatly but after around 10 mails, I have very slow response (varies from 5 sec to more than 1 minute and sometimes timeout). Usually quitting TB solves the problem but this is very annoying. I went back to 140LTS and sems to have no longer this problem. This was tested on many diffrent networks. I am running under Fedora release 42

Thanks

Asked by mouthuy Duela 5 egun

Last reply by mouthuy Duela ordu bat

Lost Passwords

Hi, I just updated by account with 2FA The stored passwords are all lost now, I can still see them in my phone (unsynced due to logged out) but cannot see any password i… (read more)

Hi, I just updated by account with 2FA

The stored passwords are all lost now, I can still see them in my phone (unsynced due to logged out) but cannot see any password in my PC.

Please help

Asked by Sumit Verma Duela 2 ordu

یه راه حل

از مدیریت حساب گوگل نمیدونم چطور خارج بشم در عوض می‌خوام یک ایمیل بذارم جای اکانتم


و جمیلیم دامنه ندارم موزیلا کار نمیکنه چیکار کنم بنظرت

Asked by hoseinshahamat Duela 2 ordu

Thunderbird slow startup on MacOS

I use Thunderbird on Windows and on Mac. I'm wondering why the startup time on Mac is significantly longer on MacOS. I'm currently on Tahoe 26.0.1 but Thunderbird has alw… (read more)

I use Thunderbird on Windows and on Mac. I'm wondering why the startup time on Mac is significantly longer on MacOS. I'm currently on Tahoe 26.0.1 but Thunderbird has always been a slow starter. Can I change any setting to remedy this. At the moment I have two mail accounts configured both Gmail.

Asked by LesJen Duela 2 egun

Last reply by LesJen Duela 5 ordu

deleted some local folders - can I restore?

I went away for a few days and when I came back I was missing a bunch of local folders. I THINK one of my employees kids were banging on me keyboard. I know I should … (read more)

I went away for a few days and when I came back I was missing a bunch of local folders. I THINK one of my employees kids were banging on me keyboard. I know I should not allow them in my office or at least password my computer when I go away??

I could import from an old computer and at least have all the local folders from before I changed computers 2 years ago.     I have a feeling there maybe an easier way?

Running on a mac. ventura. 13.2.1 thunderbird 140.3.1esr (aarch64) thank you for any help.


-andrew

Asked by purple1 Duela 5 ordu

Device sign id to access password missing after 32 - 64 bit TB update - windows 11

Have updated from 140.3.1 esr 32 bit to 143.0.1 release 64 bit TB and to windows 11 - uninstalled 32 bit and installed 64 bit and updated to windows 11 Following updates… (read more)

Have updated from 140.3.1 esr 32 bit to 143.0.1 release 64 bit TB and to windows 11 - uninstalled 32 bit and installed 64 bit and updated to windows 11 Following updates found that device sign in id (pin) was used to be in 32 bit missing from settings to access password but can show passwords. In reviewing the profile after update I note that Mozilla location service key, google location service key and safe browsing keys are missing (not sure what they were pre update). The key4.db file pre update was 1/3/22 but after update it is 10/10/25. The logins.json pre and post update is 7/9/25. I can see the default release profile and local only - use only the default release. My question is - has the 64 bit installation cleared all my keys/how can I check all my keys and how do I fix and ensure connections are secure?

Thankyou for any advice.

Asked by Margaret Duela 7 ordu

スレッドの新しい順、古い順の選択項目が表示させません

受信トレイにある「スレッド内」のメールの昇順と降順を変更したいのですが、表示→スレッドの中に「メールを新しい順にする」のような選択肢が表示されません。困っています。

並び替え項目では「スレッド」を選択しています。

サンダーバードのVer.は最新です。

よろしくお願いします。

Asked by MOSAI Duela 12 ordu

Last reply by MOSAI Duela 8 ordu

Syncing calendars

An old forum describes how to sync calendars in Thunderbird. Here is an easy solution - In the left-hand pane of your calendar page, right-click your calendar name/ expo… (read more)

An old forum describes how to sync calendars in Thunderbird. Here is an easy solution - In the left-hand pane of your calendar page, right-click your calendar name/ export calendar - into a removable device. In your other computer - Tools/import/ import from a file/ choose to import calendar - easy!

Asked by karearea.f Duela 2 egun

Last reply by karearea.f Duela 9 ordu

finding a list of email authors, finding first and last?

I want to continue using TB but a few things really make me despair of it. But there may be workarounds. If I have a question, when did these people last send me an email… (read more)

I want to continue using TB but a few things really make me despair of it. But there may be workarounds. If I have a question, when did these people last send me an email, or have any of these people responded to something, there seems to be no way to get to a list. But. I found a way to do it. Using sqlite3.

I have been wanting a CLI for interacting with TB for a while. You know, that folder I have with 10k+ emails and if I click on it, the UI spins forever. What is even in that?

Now I can do this: 1) copy the global-messages-db.sqlite from the active profile to another place 2) run: sqlite3 global-messages-db.sqlite 3) ```sqlite> select m1.c3author, min(m2.date), max(m2.date) from messagesText_content m1, messages m2 where m1.docid = m2.id group by m1.c3author order by m1.c3author; ... ray kiddy <ray@ganymede.org>|1732124816000000|1759268233000000 ruby29@something undefined|1756740716000000|1756740716000000 salvatore@someother undefined|1758733831000000|1758733831000000 support@linode.com undefined|1755126295000000|1755126295000000 ... ```

Holy sender dates, Batman! Now I can see the earliest and latest email sent by any user. Now I can filter, sort, and see every person who sent me something in a time period. And whether it was 1 email or 1000, I just see the names and not an enormous amount of other information.

So, is this the only way to get this? Or the best? I have no idea. Please let me know if there is a better way, perhaps one using TB itself. It would be nice.

In the meantime, I will be wrapping this in a python call, doing some formatting and it will work and I can stop worrying about not seeing their email.

Asked by RayKiddy Duela 11 ordu

Lost the indicator showing which folder I'm in

I have lost the indicator in the folder pane showing which folder I'm in. It used to have a small color tab in the folder pane on the left hand side. Indicating that the … (read more)

I have lost the indicator in the folder pane showing which folder I'm in. It used to have a small color tab in the folder pane on the left hand side. Indicating that the folder was selected. Any ideas to get it back? Thunderbird 140.3.1esr (64-bit)

Asked by hal2010 Duela astebete

Last reply by hal2010 Duela 14 ordu

Undesired change in response to email selection

I have just installed Thunderbird on Windows 11 and it has two very annoying new habits. When I click on an email it opens it instead of giving me a preview. And when I m… (read more)

I have just installed Thunderbird on Windows 11 and it has two very annoying new habits. When I click on an email it opens it instead of giving me a preview. And when I move an email to another folder it also opens that folder. Neither happened on the old computer so how can I get back to the way it used to be?

Asked by jsw152 Duela egun bat

Last reply by jsw152 Duela 13 ordu

Unable to add a third email account to my laptop, even though I have it on my desktop.

My problem has escalated. Before, I wasn't able to fix the constant request for password on that account. Now, after deleting the account on my laptop, I can't even add i… (read more)

My problem has escalated. Before, I wasn't able to fix the constant request for password on that account. Now, after deleting the account on my laptop, I can't even add it back. Error message says "incoming server already exists." I do have another email account with the same domain, but this is not a problem on my desktop computer, only on my laptop. (It used to work find on my laptop, too, but it stopped receiving emails on 8/20/)

Asked by wolfman141 Duela 14 ordu

Thunderbird 141.0 "Ghost Message" - deleted message in message list

I have a message that is still listed after being deleted. When I highlight the messages listed above it and below it, I can see their contents with no problem. However,… (read more)

I have a message that is still listed after being deleted. When I highlight the messages listed above it and below it, I can see their contents with no problem. However, when I click on the "ghost message" listing in between them, I will see the contents of the last message viewed, not the contents of the ghost message that is highlighted.

Also, when I first open Thunderbird and highlight that ghost message first, the review pane is blank, like there is no message there. Then if I click on a different message, that message's contents will show in the preview pane. Then when I go back and click on the the ghost message listing, that pane is still showing the previous message's contents.

When I click on "delete" message, I get the constant blue indicator light in the lower right glowing and nothing happens.

Asked by lajoes Duela 2 hilabete

Last reply by lajoes Duela 15 ordu

no messages fetched from imap server - "your message was sent, but a copy could not be placed in "Sent" folder" due to network or file access issues." SOLVED "ImapMail" folder's properties set to "read-only"

Hi, I recently set up TB with one imap account. All fine. I set up a Local Folder as well - mainly to store bulk of old mails. Then after couple of days, when I sent a m… (read more)

Hi, I recently set up TB with one imap account. All fine. I set up a Local Folder as well - mainly to store bulk of old mails.

Then after couple of days, when I sent a message, the system warned me: "your message was sent, but a copy could not be placed in "Sent" folder" due to network or file access issues. Place a copy in local folder instead?"

I recognized, that also, while my account/server seems to connect, no emails at all are fetched from the server actually.

I think there's a strange problem TB internally with ... file access? How to repair?

UPDATE : I checked my TB profile folder, and found the "ImapMail" folder's properties (Win10) showed "read-only". So I closed TB, removed the "read-only" from folder and contents, and restarted TB. But issue persisted. I went back to "ImapMail" folder in my profile - and found it marked "read-only" again. So seems TB itself set it to "read-only", it seems.

Thank you for your advice. Chris

PS:

  • Restart : nothing changed
  • run in safe mode: nothing chnaged
  • repaired folders: nothing chnaged

Asked by chRIS Duela 17 ordu

Loss of Local Folders on upgrade to Windows !!

Yesterday I upgraded my PC from Windows 10 to 11. Today I discovered my Local Folders are not visible. Searching tells me the messages still exist, but TB does not show t… (read more)

Yesterday I upgraded my PC from Windows 10 to 11. Today I discovered my Local Folders are not visible. Searching tells me the messages still exist, but TB does not show the folders. I did the same upgrade a month ago on a laptop (Windows 10 Pro to 11), no problems. I didn't externally back up the messages as I am a dinosaur and don't know how, but at least they are still on the hard drive. Thousands of them though so I need the local folders back. Tried all the fixes I can find on the Community Forum, without success. Can anyone help please? Bob

Asked by bob246 Duela 6 egun

Last reply by bob246 Duela 23 ordu