• Locked
  • Archived

Thunderbird 102.0 corrupts emails

I upgraded to TB 102.0 today. After I checked my settings and updated my plugins, it seemed to be working fine. However, later in the day I noticed a message that TB wa… (read more)

I upgraded to TB 102.0 today. After I checked my settings and updated my plugins, it seemed to be working fine. However, later in the day I noticed a message that TB was downloading about 880 messages in my main inbox. Of course, there are not nearly that many new messages. I searched and did not notice any new emails in the listing. However, I found that two recent messages had been corrupted in some way. I enclosed an image. When I open the message, there is not even the normal header with the different choices. There is just what appears to be a bunch of information that has been mushed together in place of this email. I found two emails like that. I right clicked on the two, and deleted the corrupted messages. Then I compacted files. For a moment, things seemed OK. Some other emails near those that would not display worked again. However, shortly after I did another compact folders, I got the same message -- downloading the same 880 emails. Now I have two new messages corrupted.

Please help! I have no idea how to stop this corruption. This account is hosted on Google Workspace. I have it set to sync only the last 90 days of messages.

Asked by Mark Lang 11 months ago

Last reply by Matt 9 months ago

  • Solved
  • Locked
  • Archived

Search.....

One of your recent updates has all searches forced to the address bar..... I use the Google search box on my homepage and from the first letter its moved to the address … (read more)

One of your recent updates has all searches forced to the address bar..... I use the Google search box on my homepage and from the first letter its moved to the address bar... Go back to the Google box on the homepage.... You've made it useless....

Asked by koyotee 2 years ago

Answered by jscher2000 - Support Volunteer 2 years ago

  • Solved
  • Locked
  • Archived

HERE is the answer to put "TABS BELOW" which will work with Firefox V90 using the - userChrome.css - file

HERE IS THE ANSWER Here is the answer to get TABS BELOW with Firefox V90 . . copy all of this code below the broken line into your - userChrome.css - file and save it. Yo… (read more)

HERE IS THE ANSWER Here is the answer to get TABS BELOW with Firefox V90 . . copy all of this code below the broken line into your - userChrome.css - file and save it. You can modify the 45px in this line if you wish to get an appropriate height . . just experiment with different numbers till you get it right --menubar-height: 45px; /*30px|41px=11px; caption buttons on menubar*/

Also to make the tabs wider or narrower, modify the line which is coded width: 50vw !important;

Finally you must enable - css - in Firefox, by typing about:config into your address bar, and search for toolkit. When all the toolkit options appear change the one which says toolkit.legacyUserProfileCustomizations.stylesheets to TRUE by click the icon in the right hand column. Than close Firefox and reopen, and check how it looks This will enable your - css - file to be read, and interpreted and accepted by the Firefox browser.

-------------------------------------------------------------------
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: bottom - Firefox 65 and later - updated for 89+ */
/* https://searchfox.org/mozilla-release/source/browser/themes/shared/tabs.inc.css */
/* https://raw.githubusercontent.com/Aris-t2/CustomCSSforFx/master/classic/css/tabs/tabs_below_navigation_toolbar_fx89.css */
/* https://developer.mozilla.org/en-US/docs/Tools/Browser_Toolbox */

/* ROOT - VARS */
/* you can adjust the CSS variables until it looks correct */
/* you can use the Browser Toolbox to get the toolbar heights */

*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;

  --tab-min-height: 40px !important;
  --tab-min-width:  60px !important;

  --tab-adjust:  0px; /* adjust tab bar - only for 68-73 */
  --tab-caption: 5px; /* caption buttons on tab bar */
}

/* TAB BAR - below nav-bar */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10 !important;}
#TabsToolbar {-moz-box-ordinal-group:1000 !important;}

#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 50vw !important;
}

#tabbrowser-tabs {
  width: 100vw !important;
}

/* navigator-toolbox - PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  position: relative !important; /*89+*/
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  background-color: var(--toolbar-bgcolor) !important;
}

/* TabsToolbar with menubar and titlebar hidden - rules for Firefox 65-73 */
*|*:root[tabsintitlebar]:not([inFullscreen="true"]):not([sizemode="maximized"]) #toolbar-menubar[autohide="true"] ~
 #TabsToolbar{
  bottom: var(--tab-adjust); /*ADJUST*/
}

/* TABS: height */
#tabbrowser-tabs,
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
.tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#TabsToolbar {
  height: var(--tab-min-height) !important;
  margin-bottom: 1px !important;
  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*OPTIONAL*/
  background-color: var(--toolbar-bgcolor) !important;
  color:            var(--toolbar-color) !important;
/*  z-index: 1 !important; */
}

/* indicators *//*
*|*:root[privatebrowsingmode=temporary] .private-browsing-indicator {
  position: absolute !important;
  display: block !important;
  right: 0px !important;
  bottom: 0px !important;
  width: 14px !important;
  pointer-events: none !important;
}
*/
.private-browsing-indicator {display: none !important;}
.accessibility-indicator    {display: none !important;}

/* Indicators - HIDE *//*
*|*:root:not([accessibilitymode])             .accessibility-indicator    {display: none !important}
*|*:root:not([privatebrowsingmode=temporary]) .private-browsing-indicator {display: none !important}
*/

/* Drag Space */
.titlebar-spacer[type="pre-tabs"],
.titlebar-spacer[type="post-tabs"] {
  width: 20px !important;
}

/* Override vertical shifts when moving a tab */
#navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
  padding-bottom: unset !important;
}

#navigator-toolbox[movingtab] #tabbrowser-tabs {
  padding-bottom: unset !important;
  margin-bottom: unset !important;
}

#navigator-toolbox[movingtab] > #nav-bar {
  margin-top: unset !important;
}

/* Hide window-controls and caption buttons on Tab Bar */
#TabsToolbar #window-controls {display: none !important;}
#TabsToolbar .titlebar-buttonbox-container {display: none !important;}

Asked by Trevor George, Bristol, UK 1 year ago

Answered by Trevor George, Bristol, UK 1 year ago

  • Solved
  • Archived

Microsoft 365 SMTP server intermittently rejecting connections

I've been running Tbird on Windows for many years. About 2 weeks ago something changed, either in Tbird or at Microsoft, which stops me from sending to the Office 365 SMT… (read more)

I've been running Tbird on Windows for many years. About 2 weeks ago something changed, either in Tbird or at Microsoft, which stops me from sending to the Office 365 SMTP server. I can send and receive using Outlook on the Office website, but I can't send locally from Tbird. Error message screenshot herewith. I have tried every possible permutation of server settings, which currently are:

Server name: smtp.office365.com Port: 587 Security: START/TLS Authentication: OAuth2

MS support says these are correct, and they are at wits' end to understand what is going on. They asked me to ask Tbird support, so I am.

I should add that at about the same time I started getting SMTP rejections in Gmail on my Android phone, and miraculously that was corrected yesterday, without any action from me. There is something odd going on at Microsoft - does anyone know what it is? My other accounts on Tbird work fine of course.

Asked by lesrose1959 9 months ago

Answered by gp 6 months ago

  • Solved
  • Archived

Can no longer play media with Firefox ESR 102.x

Hello, ever since we moved endpoints from Firefox ESR 91.13 to 102.3, it has become impossible to play any media with Firefox. No video will play in youtube, for instanc… (read more)

Hello, ever since we moved endpoints from Firefox ESR 91.13 to 102.3, it has become impossible to play any media with Firefox.

No video will play in youtube, for instance (it just loads endlessly as if it would start, but it doesn't).

Can't use radio websites either. Anything with a "play" button (video or sound) does nothing.

This has been tested with a clean profile, a clean install, after allowing autoplay in the settings.

Is there any info on what exactly changed between ESR 91 and 102 that might explain this ? There has been no system change, If I reinstall 91 instead it works again as usual.

No issues anywhere else on the endpoints (Edge, Windows), this is on Windows 10 if it makes any difference.

Tanks for any help on this.

Asked by OdeonFF 8 months ago

Answered by OdeonFF 4 months ago

  • Solved
  • Locked
  • Archived

Firefox "Print Preview" has disappeared from the File menu in 84.0.2

Firefox "Print Preview" has disappeared from the File menu in 84.0.2; all I have now is "Print", which brings up a Microsoft Edge style print dialog. Is this an upgradin… (read more)

Firefox "Print Preview" has disappeared from the File menu in 84.0.2; all I have now is "Print", which brings up a Microsoft Edge style print dialog. Is this an upgrading error, or is it just the way Firefox will be now?

Asked by firefox1202 2 years ago

Answered by jscher2000 - Support Volunteer 2 years ago

  • Solved
  • Archived

Migrating from Eudora OSE to Thunderbird

I'm trying to help an elderly friend move from Eudora OSE to Thunderbird. I found this closed thread on the forum - and I want to know 'how to back up the Eudora OSE Prof… (read more)

I'm trying to help an elderly friend move from Eudora OSE to Thunderbird. I found this closed thread on the forum - and I want to know 'how to back up the Eudora OSE Profile' - or any other help you can give re migrating from Eudora OSE to Thunderbird. (She has thousands of old emails.)

The tech person said,

"May I suggest, back up your OSE Profile, and give it a try.

And the other replied: "I took the tech's suggestion Backed up Euroda files and simply installed Thunderbird VOILA ! When I launched Thunderbird it simply accessed the same files and file structure (and settinge/etc) as Eudora and I didn't have to do anything ... awesome !"

Asked by rache1 1 year ago

Answered by david 1 year ago

  • Solved
  • Archived

How to restore a removed account in Thunderbird

Hello, I have recently changed my Host and in the process of trying to reconfigure my server details for my new mail account I accidentally removed my account, thereby lo… (read more)

Hello, I have recently changed my Host and in the process of trying to reconfigure my server details for my new mail account I accidentally removed my account, thereby losing all mails and folders including my customer database, which leaves me feeling bereft.

Looking at similar questions it seems that it is possible to restore the lost mails and folders but unfortunately I am not that savy with this stuff and find it all rather difficult and scary.

Are there any step by step instructions on how I can restore my account or simply get access to my lost mails and folders ?

Thank you very much for any assistance.

Ray

Asked by flynnboy 9 months ago

Answered by flynnboy 9 months ago

  • Solved
  • Archived

Log ins lost every time I start FireFox - only started happening recently.

I've checked a couple of the "similar topics" before posting here. I'm not sure if I am having the same problem or something else. Back Story: I have a "few" windows an… (read more)

I've checked a couple of the "similar topics" before posting here. I'm not sure if I am having the same problem or something else.

Back Story: I have a "few" windows and tabs open in FireFox. I would finish what I was doing, shut down and then the next time I booted up and loaded FireFox, all sessions would be restored and all log ins honoured (kept). That is: I was still logged in.

(Moving to now) Yesterday I powered up and ALL sites were logged out. About 20 log ins were needed. Hmmmmm... gmail, and the rest.

"Ok... something happened. No problems, things should be ok from now. I've logged in, so all is sweet."

Today I power up: All logs ins lost. Had to go through it all again.

Gmail is throwing security alerts at me hand over fist. Yeah, that is good in some ways. I get that part. But I've logged in.

Seems - my thoughts - that the cookies aren't being saved. But why? I haven't touched them or their settings.

Yes, I did do a clean out of older cookies. But left the gmail ones, and other sites I know I use. I have `adblocker ultimate` installed.

Now I am logged in, if I open the `cookies` and look I should see them there for the sites to which I am logged in - yes?


To be clear: When I am done, I do NOT `exit` FireFox. All windows, tabs, sessions are left. I just shut down the machine. Then next time I load FireFox and they are re-loaded and log ins are maintained.

Asked by teeny_weeny 11 months ago

Answered by cor-el 10 months ago

  • Solved
  • Archived

SaveFrom.net Helper

The other day I downloaded SaveFrom.net Helper but then shortly after I deleted it. The program was deleted from the computer except that the green line with the program … (read more)

The other day I downloaded SaveFrom.net Helper but then shortly after I deleted it. The program was deleted from the computer except that the green line with the program name shows as an extension on the bar at the top of the Firefox page.

I cannot delete it. If I delete it once it reappears next time I load Firefox. The extension does not show up in add ons and extensions in Tools Firefox.

I have read an earlier reply that suggests delete Firefox and reinstall Firefox and that will get rid of it.

However, I am not anxious to try that as over time I have already extensions ad add ons and other customisation of Firefox, including all my bookmarks and I don't want to lose these and start again.

So here is my question. As the program is deleted and as their extension does not show up in Tools and then adddons, can I assume that the existence of the program name as an extension on one of the title bars at the top of Firefox is just an irritation and that this SaveFrom program cannot in any way add or do anything to my computer?

I can then live with it rather than deleting Firefox and starting again.

I would be so grateful for your help.

Thank you.

Asked by avwood 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Solved
  • Archived

HELP...

Everything was working fine in Thunderbird for a LONG time. A few minutes ago I opened it and instead of opening normally it opened to a page called 'account setup'. Th… (read more)

Everything was working fine in Thunderbird for a LONG time. A few minutes ago I opened it and instead of opening normally it opened to a page called 'account setup'. There was another tab called 'home' that had buttons for email, calendar, address book, etc. Clicking email took me to the account setup page again.

HOW DO I GET IT BACK TO NORMAL?????

Asked by bossman3 1 year ago

Answered by Toad-Hall 1 year ago

  • Solved
  • Archived

Font Corruption on Sent emails compared to Composed/Write emails

When I compose/write a new email the text correctly displays the font and size I have selected In PREFERENCES -COMPOSITION - HTML STYLE which is Times New Roman with FONT… (read more)

When I compose/write a new email the text correctly displays the font and size I have selected In PREFERENCES -COMPOSITION - HTML STYLE which is Times New Roman with FONT SIZE selected as Medium.

However when I view the very same email composed with line and length and breaks fitting Times New Roman Medium in my SENT box the font and size has been changed to what appears to be a HELVETICA font with the SIZE being larger than medium and this causes sentence wraparounds and corruption of the entire appearance of the email composed/written

How and what do I set to ensure the compose/write fonts display the same in SENT/RECEIVED.

Asked by mconway1 1 year ago

Answered by david 1 year ago

  • Solved
  • Archived

What Happened to "Print Preview"?

A recent Firefox update has totally disrupted our ability to print from browser windows. There used to be a "Print Preview" button that allowed us to set things up the wa… (read more)

A recent Firefox update has totally disrupted our ability to print from browser windows. There used to be a "Print Preview" button that allowed us to set things up the way we wanted them. That's now missing. As a result, stuff that used to cost us for ten pages now costs us for twenty pages. Also, when we print double-sided, the second side prints upside down.

This strikes me and my wife as a horrible development, and we would like to go back to the old version ASAP!

Asked by Anan 2 years ago

Answered by jscher2000 - Support Volunteer 2 years ago

  • Solved
  • Archived

Recently changed hosts and now I have TWO mailboxes in Thunderbird

Hi, I have just changed my hosting company. I reconfigured my server settings and now I have TWO mailboxes: ray@raysloan.com (this is the one I want!) and another ray@nil… (read more)

Hi, I have just changed my hosting company. I reconfigured my server settings and now I have TWO mailboxes: ray@raysloan.com (this is the one I want!) and another ray@nilgaut.o2switch.net All mails are going into the latter and this is NOT the one I want. If I look at 'settings' for raysloan.com at the top it says 'The following is a special account. There are no identities associated with it - account name ray@raysloan.com' !?

Please see the screen shots attached.

I am terrified of trying anything for fear of losing important mails. The last time something similar happened I lost all of my client information ! How can I get my primary mailbox back as my default mailbox and get rid of the ray@nilgaut.o2switch.net without losing mails ?

Thanks very much for any help.

Asked by flynnboy 7 months ago

Answered by flynnboy 7 months ago

  • Solved
  • Archived

Latest update forces dark context menus and bookmark menus.

How do I get rid of this crap? I either select a crappy system theme and everything turns a blinding white, or go back to the theme I usually use where everything suddenl… (read more)

How do I get rid of this crap? I either select a crappy system theme and everything turns a blinding white, or go back to the theme I usually use where everything suddenly is dark. How do I remove darkmode while retaining my favorite theme? I don't want dark mode and I certainly do not want to be blinded either. There must be a useless setting added to the about:config that I can disable.

Thank you.

Asked by fifawof274 1 year ago

Answered by ·´¯`·...¸>-)))º> ~dbben 1 year ago

  • Solved

cannot find a window i closed today having multiple tabs, using "history" and recently closed tabs/windows (both).

tell me whether i can find a window i closed today having multiple tabs, using "history" and recently closed tabs/windows (both). i especially want to be able to restore … (read more)

tell me whether i can find a window i closed today having multiple tabs, using "history" and recently closed tabs/windows (both). i especially want to be able to restore the tab for Institute for the Study of War and its companions. i hope you are warm and rested.


to do my regular research, i have lost three or four (or more) windows with multiple tabs, as a result of my reorganizing tabs. i think of each window with one of its tabs, so these would be, "Emma Loop" (which includes all federal court districts tabs and related info); "Kyle Griffin" (which includes various journalist/news tabs); "emptywheel" (which includes various journalist/news tabs); and other such similar windows whose name ID i don't remember.

restore scares me because it will apply to bookmarks.

i recently began migrating from twitter to mastadon, and wanted to add my regular tabs to mastadon. i moved tabs to keep track, but it seems the tab's parent windows disappeared. i cannot be more clear, because i had a total of about 15 windows with multiple tabs EACH. i regularly exited the program to install updates and because of my settings, all the windows/tabs were saved correctly. this is a great feature.

it takes time to create a window with multiple tabs, and i don't have much of a brain, so it's hard for me to learn new stuff. maybe we can work together to clarify what i need. i just want my "lost" windows/tabs to return to the others so i can continue going forward. i blame this guy - the "new twitter owner" - who has even made changes to UKRAINIANS' account performances. thank you.

Asked by notanotherhero 5 months ago

Answered by notanotherhero 4 months ago

  • Locked
  • Archived

Double spacing in Menus is back :'-(

A few months ago Firefox decided to double space all the items in menus. Reading through the forums many people didn't like this because of the amount of space that the m… (read more)

A few months ago Firefox decided to double space all the items in menus. Reading through the forums many people didn't like this because of the amount of space that the menus now take up. Fortunately there was a work around, by setting 'browser.proton.contextmenus.enabled to false they returned to normal

This morning Firefox my got upgraded and the double spacing problem is back again. However there appears to be a bug with the setting and the menus won't return to normal. I'm now stuck with stupidly large menus that won't fit on the screen and lots of painful scrolling.

Does anybody have an alternative workaround until this is fixed?

Asked by stormcloud 1 year ago

Last reply by chrisjsevans 1 year ago