Showing questions tagged: Show all questions

How to set the browser for Thunderbird 115.11.1 (64-bit) MacOs

Greetings, I'm using Thunderbird 115.11.1 (64-bit) on MacOS 14.4 (M1). I'm trying to set the browser Thunderbird uses to Firefox - overriding the system's default brows… (read more)

Greetings,

 I'm using Thunderbird 115.11.1 (64-bit) on MacOS 14.4 (M1). I'm trying to set the browser Thunderbird uses to Firefox - overriding the system's default browser.

The instructions I'v found are out-of-date, they do not apply to version 115.11.1 (64-bit).

The question: For this version, how can I set Thunderbird's browser? I hope this feature wasn't removed!

Thanks

Asked by transeme 14 minutes ago

Fiirefox not working smoothly with various sites. Chrome worked

Trying to us kp.org and Firefox would not recognize the selections made. At times Firefox would not let me make or retain the selection made. Switched to Chrome and sit… (read more)

Trying to us kp.org and Firefox would not recognize the selections made. At times Firefox would not let me make or retain the selection made. Switched to Chrome and site worked smoothly.

Asked by steve624 1 hour ago

Where and how is the setting(s) for always checking IMAP folders for new mail stored?

Hi, I'm trying to automate / batch set the "When getting messages for this account, always check this folder"-setting for a large number of folders so I'm trying to figu… (read more)

Hi,

I'm trying to automate / batch set the "When getting messages for this account, always check this folder"-setting for a large number of folders so I'm trying to figure how Thunderbird stores the setting(s) of which folders to always check for new mail.

Checking the `global-messages-db.sqlite` it seems like all folders that have the "always check folder"-setting have a `indexingPriority` value of 30 in the `folderLocations` table, but simply setting it to 30 for other folders does not enable the "always check folder"-setting so I guess that is set elsewhere. Where?

Also what other settings are set for the folder when enabling "When getting messages for this account, always check this folder" ?

Thanks in advance /frax

Asked by frax 6 hours ago

Last reply by frax 1 hour ago

My Inbox Email List doesn't start by showing the latest emails

My Thunderbird Inbox is set up to order the emails so the oldest emails are at the top of the list, and the part of the list that is showing in the window on the screen i… (read more)

My Thunderbird Inbox is set up to order the emails so the oldest emails are at the top of the list, and the part of the list that is showing in the window on the screen is the bottom of the list, therefore the most recent emails. However, when I open Thunderbird to look at the emails in the Inbox, while the list is in the order as just specified (oldest at the top, newest at the bottom), what I see on the screen is the section of the list of the emails that arrived about 6 weeks ago. To see the most recent emails I have to move the list up the window. It has been doing this for about 2 months.

Any idea why it is doing this, and how to 'fix' it, please?

Thankyou

Asked by graham65 2 weeks ago

Last reply by graham65 2 hours ago

메일에 링크 삽입 시 링크주소가 다르게 나옵니다.

안녕하세요. 썬더버드 메일 사용 중 인데요. 메일에 링크 삽입 시 링크주소가 다르게 나옵니다. "링크 테스트"에 "cafe.naver.com/masterlesson" 링크를 주었으나 결과는 "mail.naver.com/v2/read/0/cafe.naver.com/masterlesson" 으로 링크됩니다… (read more)

안녕하세요. 썬더버드 메일 사용 중 인데요. 메일에 링크 삽입 시 링크주소가 다르게 나옵니다.

"링크 테스트"에 "cafe.naver.com/masterlesson" 링크를 주었으나 결과는 "mail.naver.com/v2/read/0/cafe.naver.com/masterlesson" 으로 링크됩니다.

Html 사용해도 마찬가지 입니다.

메일은 네이버 메일 계정에서 네이버 메일 계정으로 메일을 전송했습니다.

추가로 첨부파일 넣었으니 확인해주시고 빠른 답변 부탁드립니다.

Asked by jongkyuda2 4 hours ago

When turning on Laptop - message appears

There is problem going on when I turn my laptop in the morning. It has appeared three times now. The message say " Open or Fresh Firefox" The first time I did a Fresh, t… (read more)

There is problem going on when I turn my laptop in the morning. It has appeared three times now. The message say " Open or Fresh Firefox" The first time I did a Fresh, the second one I clicked "Open". I later get an update and I didn't do the update then the next morning I cannot login into my laptop. I kept getting codes to enter my password. Finally, a security screen appeared and I was able to login. This morning when turning on my laptop I see the same message appear again. I did the refresh Firefox. I had to go back and reset all my personal setting.

Also, I am letting you know that I am being monitor and I am having other problems with my email and iPhone. Question: Who is monitoring the monitor?

Asked by Yolanda 4 hours ago

Mozilla Firefoz crashes multiple times after waking laptop from sleep

The behavior began with fifteen to twenty crash messages appearing. After which the browser would stop responding and be unable to reach out to the internet. Network con… (read more)

The behavior began with fifteen to twenty crash messages appearing. After which the browser would stop responding and be unable to reach out to the internet.

Network connectivity was confirmed as I was able to access my VPN and corporate teams.

I submitted as many crash reports as I could. Eventually the crash reporter ceased to function. The message is:

Firefox had a problem and crashed. Unfortunately, the crash reporter is unable to submit a report for this crash.

Details: expected value at line 1 column 1

Only a full reboot of the machine restored functionality but only temporarily. It returns after being put into sleep mode.

Running firefox in safe mode does not restore functionality. The behavior persists.

I am fully up to date according to firefox.

I am running a Lenovo Thinkpad Windows 11.

Asked by Candlejack 1 day ago

Last reply by Candlejack 5 hours ago

Obscure canvas rendering issue

Hello, I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint … (read more)

Hello,

I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint application. The issue is that the very first time that the user presses the mouse, the line stops abruptly, while the next times the lines are drawn correctly. The events seem to fire correctly and the page works fine at Chromium, so it seems to be a Firefox issue. You can find the html page below. I am curious, what could be the problem?

<!DOCTYPE html>
<html lang="el">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Canvas</title>
  <style>
    #canvas {
      background-color: whitesmoke;
      border: solid 2px brown;
    }
  </style>
</head>

<body>
  <canvas id="canvas"></canvas>

  <script>
    function startDrawing(e) {
      isDrawing = true;
      context.beginPath();
      context.moveTo(e.offsetX, e.offsetY);
    }

    function draw(e) {
      if (isDrawing) {
        context.lineTo(e.offsetX, e.offsetY);
        context.stroke();
      }
    }

    function stopDrawing(e) {
      console.log("stopped drawing")
      isDrawing = false;
    }

    const canvas = document.getElementById('canvas');
    const context = canvas.getContext('2d');
    var isDrawing = false;
    canvas.width = 1000;
    canvas.height = 1000;
    context.strokeStyle = "#913d88";
    context.lineWidth = 2;
    canvas.onmousedown = startDrawing;
    canvas.onmouseup = stopDrawing;
    canvas.onmousemove = draw;
  </script>
</body>

</html>

Asked by ngiatsog 1 day ago

Last reply by ngiatsog 10 hours ago

firefox ate my history

after downloading and installing v.126 of firefox, my history has disappeared. the browser is not generating new history from web site visits. the history is fixed perman… (read more)

after downloading and installing v.126 of firefox, my history has disappeared. the browser is not generating new history from web site visits. the history is fixed permanently on a single web address. this is the web address of a site that is in my toolbar. this site cannot be deleted from the history. this site cannot be deleted through the preferences menu. the same site shows in the history file as the only site visited in the past several months, even though i have not visited that site in the past several months. the browser does not show my browsing history. the browser does not create a browsing history. my history function is permanently broken.

help?

Asked by drollere 1 day ago

Last reply by drollere 13 hours ago

Firefox Browser Defaults to the Wrong Time Zone

I've seen a few submissions describing the same or similar issues, but is there a consistent, effective way of changing the time zone in Firefox? It keeps defaulting to t… (read more)

I've seen a few submissions describing the same or similar issues, but is there a consistent, effective way of changing the time zone in Firefox? It keeps defaulting to the wrong time zone (despite everything else on my system displaying the correct time zone) and has been doing so for weeks. Solutions appreciated!

Asked by linsilver888 13 hours ago

binance problem with live price

Hi support from yesterday firefox has a problem Different computers Different internet same problem Different versions of Brouzer I have the same problem with both of you… (read more)

Hi support from yesterday firefox has a problem Different computers Different internet same problem Different versions of Brouzer I have the same problem with both of you yesterday is a problem Binance prices does not cope in Live not only the prices but other items do not work. Tested on another brouzer neatly doing some problem to you

Thank's

Asked by nebojsa3 13 hours ago

I can't send emails

Hi there, I really need help. I can't send emails anymore, but can receive them. All settings look correct to me, so I am lost. Please help! I am with skymesh. My email … (read more)

Hi there,

I really need help. I can't send emails anymore, but can receive them. All settings look correct to me, so I am lost. Please help! I am with skymesh. My email address is meike.m@skymesh.com.au

Regards

Meike

Asked by Meike Mueller 14 hours ago

After update, when I click on auto fill option a settings tab opens every single time

After update, when I click on auto fill option a settings tab opens every single time. I close it and it happens again. I use firefox to fill out some repeated forms (and… (read more)

After update, when I click on auto fill option a settings tab opens every single time. I close it and it happens again. I use firefox to fill out some repeated forms (and separate topic would also like to customize these autofils and pre-write some ideally), but this is a new problem that breaks using firefox totally for me, causing lots of scrolling clicks and time wastage. What changed that can be fixed in recent updates on this? Thanks.

Asked by bryant4 20 hours ago

A new pop-up box is preventing me from using a site I have been using regularly for several years

I've been using a Rewards site regularly (3/4 times per month) for several years without problem. This weekend the attached pop-up appeared. It makes no difference wheth… (read more)

I've been using a Rewards site regularly (3/4 times per month) for several years without problem. This weekend the attached pop-up appeared. It makes no difference whether I select Resend or Cancel, the program just re-displays the pop-up trapping me in an endless loop. The only exit is to close the window and abort the process. I was able to complete the task without any problem using Edge instead so it appears to be a Firefox specific issue. I haven't consciously changed anything since last using the site successfully on 24 May. Any help/suggestions appreciated.

Asked by eregister 1 day ago

Last reply by eregister 1 day ago