Firefox desktop version

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and ever… (kàsi)

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and every time I click to check my mails or read an article your browser opens a tab that shows my account settings. It is terribly annoying. Thank you! Ariane

Asked by Ariane 1 ìṣẹjú ṣẹ́hìn

not working

i am about to get rid of Thunderbird No new messages coming up. I go to my Xfinity email a where Thunderbird is connected to and i have new messages i go to thun… (kàsi)

i am about to get rid of Thunderbird No new messages coming up. I go to my Xfinity email a where Thunderbird is connected to and i have new messages i go to thunder bird and no new messages coming up i lie Thunder bird but this is ridicoulus here are some examples i need you to tell me why and how to fix it i will not uninstall Thunderbird just to have it do this again i disabled he add ons a tried reinstalling over the old and still nothinghree is some recent in xfinity but not in Thunderburd ok top photo as of today is in xfinity not in Thunderbird this is what i see in Thunderbird as of today July8th now tell me why

 even with out  norton it does it   what is wrong and why do  i need to  reinstall and lose my addresses again this is terrible

Asked by Mary 38 àwọn ìṣẹjú ṣẹ́hìn

Adding a new POP mail account

Hello. I have a strange problem. I have the latest Beta version with an IMAP account running fine. I need to add a second POP account. When I go through the motions o… (kàsi)

Hello. I have a strange problem. I have the latest Beta version with an IMAP account running fine. I need to add a second POP account. When I go through the motions of New Account > Email, the 'Account Hub' box appears were I can enter the name of the account and the email address. When I click Continue, I get two green ticks and it says Looking Up Configuration then it changes to a spinning blue circle. This stays like this indefinitely. I click the escape key to close the window.

Then if I go back to the New Account > Email procedure, it takes me back to the same box with the spinning blue circle and I can't start the process again. I have to restart Thunderbird to try again, but it still won't work. I have tried starting in Troubleshooting mode and disabling add ons but like the blue circle I am going in circles.

I have two computers and on the other one I have the original Release version. This adds the second POP account with no problem.

I am on Windows 11. Can anyone suggest something to try?

Asked by Ambience Fires And Solar 1 wákàtí sẹ́hìn

Last reply by Ambience Fires And Solar 45 àwọn ìṣẹjú ṣẹ́hìn

I have a problem with receiving and sending emails through thunderbird and also have a pop up aol.com page that cannot be deleted or filled in

Good morning I have a problem with emails on thunderbird. Often they seem blocked in the system or fail to send. In addition all my emails are on the thunderbird and woul… (kàsi)

Good morning I have a problem with emails on thunderbird. Often they seem blocked in the system or fail to send. In addition all my emails are on the thunderbird and would like to remove all the aol mails but cannot find out how to do this?

There is also an aol pop up that comes up on the screen that cannot be deleted or filled in and i have to keep restartingthe computer to get rid of it

Can you help please?

Asked by fieldps 46 àwọn ìṣẹjú ṣẹ́hìn

استرجاع بياناتي

ارجو من جنابكم التفظل وارجاع معلوملتي الكامله في حسابmozilla لاني منذ مده طويله لم استطع الوصول لبياناتي علما اني طلبت متكم المساعده من قيل ولكن دون جواب منكم

Asked by salah Ali 57 àwọn ìṣẹjú ṣẹ́hìn

Thunderbird email has stopped downloading emails from my server.

Hi, My Thunderbird email has stopped downloading emails from my server. I click to download emails, get a message saying "downloading 1 of 25" but no progression from her… (kàsi)

Hi, My Thunderbird email has stopped downloading emails from my server. I click to download emails, get a message saying "downloading 1 of 25" but no progression from here onwards. No messages are downloaded. I have made no changes to the settings and it has been working well for many years. wifi is connected.

Thank you for help to restore this.

Melissa

Asked by Melissa Nicholls 3 àwọn ọjọ́ tó kọjá

Last reply by Melissa Nicholls 1 wákàtí sẹ́hìn

.pdf downloading failed after updating the browser.

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to downlo… (kàsi)

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to download but everything runs properly and the success message is appearing but the file is not downloading. Before, update the browser, the file was downloaded properly, please tell me how to resolve the problem. It's an URGENT. Please take necessary action at an earlier.

function exportToPDF() {

   try {
       const table = document.getElementById("dataTable");
       if (!table || table.classList.contains('hidden')) {
           showAlert("Nothing found to generate PDF!");
           return;
       }
       const originalScrollPosition = {
           body: document.body.scrollTop || document.documentElement.scrollTop
       };
       document.body.scrollTop = 0;
       document.documentElement.scrollTop = 0;
       const tableContainer = document.querySelector(".table-container");
       const cloneContainer = tableContainer.cloneNode(true);
       cloneContainer.style.overflow = "visible";
       cloneContainer.style.maxHeight = "unset";
       cloneContainer.classList.add("no-scrollbar");


       const clone = cloneContainer.querySelector("table");
       clone.style.fontSize = "12px";
       clone.style.borderCollapse = "collapse";
       clone.style.width = "100%";
       clone.querySelectorAll('th').forEach(th => {
           th.style.fontSize = "10.5px";
           th.style.padding = "1px";
           th.style.border = "1px solid black";
       });
       clone.querySelectorAll('td').forEach(td => {
           td.style.fontSize = "10.5px";
           td.style.padding = "1px";
           td.style.border = "1px solid black";
       });


       const now = new Date();
       const dateTime = now.toLocaleString("en-GB", {
           day: "2-digit", month: "2-digit", year: "numeric",
           hour: "2-digit", minute: "2-digit", second: "2-digit",
           hour12: true
       });
       const selectedYearValue = document.getElementById('yearSelect').value;


       const wrapper = document.createElement("div");
       wrapper.style.fontSize = "16px";
       wrapper.style.fontFamily = "Arial, sans-serif";
       wrapper.style.width = "100%";


       const header = document.createElement("div");
       header.style.textAlign = "center";
       header.innerHTML = `
Financial Year wise Report on BEUP || 17th Assembly (2021-2026)
Financial Year: ${selectedYearValue}
               Report as on: ${dateTime}
       `;
       wrapper.appendChild(header);
       wrapper.appendChild(cloneContainer);
       cloneContainer.style.marginTop = "2px";
       cloneContainer.style.paddingTop = "0px";


       const fileName = `MLA_wise_&_F-Y_wise_Report_as_on_${formatDateTimeForFilename()}.pdf`;


       document.body.style.overflow = 'hidden';
       const opt = {
           margin: [5, 5, 5, 5],
           filename: fileName,
           image: { type: 'jpeg', quality: 1 },
           html2canvas: {
               scale: 2,
               useCORS: true,
               scrollY: 0,
               windowHeight: document.documentElement.scrollHeight
           },
           jsPDF: {
               unit: 'mm',
               format: 'a4',
               orientation: 'landscape'
           }
       };
       html2pdf().set(opt).from(wrapper).save().then(() => {
           
           document.body.scrollTop = originalScrollPosition.body;
           document.documentElement.scrollTop = originalScrollPosition.body;
           document.body.style.overflow = ;

           showAlert("PDF file downloaded successfully!", 'success');
       });
   } catch (e) {
       console.error("Error generating PDF:", e);
       document.body.style.overflow = ;

       showAlert("PDF generation failed. Check console for details.", 'error');
   }

}

Asked by BEUP NADIA 1 wákàtí sẹ́hìn

Thunderbird.

Hi all. Is it possible to send 400 mails and attach different .pdf files.? I have the e-mail list in a cvs file, and 400 *.pdf files placed in a folder. I know that it mi… (kàsi)

Hi all. Is it possible to send 400 mails and attach different .pdf files.? I have the e-mail list in a cvs file, and 400 *.pdf files placed in a folder. I know that it might be done i Google mass mail, but I would prefer to use Thunderbird the same way. Does anyone know if this is possible?

Asked by henning21 20 àwọn wákàtí sẹ́hìn

Last reply by henning21 2 àwọn wákàtí sẹ́hìn

Auto-fill URL like Chrome

In Chrome, for example, if you type "maps" in the address bar, it will autofill to "maps.google.com", which then redirects to the correct URL, "google.com/maps". Initiall… (kàsi)

In Chrome, for example, if you type "maps" in the address bar, it will autofill to "maps.google.com", which then redirects to the correct URL, "google.com/maps". Initially, it doesn’t do this, but if you do it repeatedly, Chrome eventually learns and sends you directly to that URL when you type "maps". The same happens with "gmail" or even just "gm", which redirect to "gmail.com" or "mail.google.com". Does Firefox have this kind of feature?

I think I browsed a reddit thread from a few years ago asking this same problem having something to do with autofill frequency which doesn't work, because the actual url is not, in the example of maps, maps.google.com and the url I want to enter redirects to it.

Asked by Professional WYML 1 ọjọ́ tó kọjá

Last reply by Professional WYML 3 àwọn wákàtí sẹ́hìn

The browser becomes unresponsive when browsing video websites, win10, ASUS

When navigating through video websites, the browser often becomes unresponsive and refreshes the interface. When accessing other websites, the browser tabs frequently exp… (kàsi)

When navigating through video websites, the browser often becomes unresponsive and refreshes the interface. When accessing other websites, the browser tabs frequently experience crashes.

Details regarding the operating system, laptop model, and browser version are provided below, and the screenshot of unresponsive website has been attached with this, um email or message.


版本 Windows 10 专业工作站版 版本号 22H2 安装日期 ‎2023/‎5/‎25 OS 内部版本 19045.6036


设备名 - 处理器 13th Gen Intel(R) Core(TM) i9-13900H 2.60 GHz 机带 RAM 32.0 GB (31.6 GB 可用) 显卡 NVIDIA GeForce RTX 4060 Laptop GPU (8 GB), Intel(R) Iris(R) Xe Graphics (128 MB) 设备 ID - 产品 ID - 系统类型 64 位操作系统, 基于 x64 的处理器 笔和触控 为 10 触摸点提供笔和触控支持


Firefox版本: 139.0.4 (64 位)

Asked by CORE_denkou 3 àwọn wákàtí sẹ́hìn

How do I convert PST files to other formats?

You may need to convert PST files to other formats to access, share, back up, or migrate your Outlook data more flexibly and securely. PST files are only supported by Mic… (kàsi)

You may need to convert PST files to other formats to access, share, back up, or migrate your Outlook data more flexibly and securely. PST files are only supported by Microsoft Outlook—so if you're switching to another email client (like Thunderbird or Apple Mail), moving to a cloud-based platform (like Gmail or Office 365), or simply want a portable, readable backup (like PDF), converting the PST file becomes essential.

Asked by Willams Welsh 4 àwọn wákàtí sẹ́hìn

[TB Lightning] Oudated tasks: different behavior between release and ESR

Hello, I have noticed a difference in behavior (for some time now, but I haven't noted exactly which version: first half of the year) in the alert for tasks that are “ou… (kàsi)

Hello,

I have noticed a difference in behavior (for some time now, but I haven't noted exactly which version: first half of the year) in the alert for tasks that are “oudated” but not “completed.”

On ESR, an outdated task continues to sound at the launch or from time to time. On release, an outdated task no longer sounds (it remains green in the list, but that's all). And we are no longer notified if we don't go and check.

I don't know if this behavior is intentional or if it's a bug, but personally I switched to ESR because it's too problematic for me to no longer have alerts on overdue tasks.

Please let me know what you think...

[To reproduce: create a task with a start time 5 minutes before your test, no end date, and a reminder 0 minute before].

Asked by tonton phone 2 àwọn ọjọ́ tó kọjá

Last reply by tonton phone 4 àwọn wákàtí sẹ́hìn

In Windows 10 how to I stop the Firefox Icon from showing recent downloads without having to delete everyone

In Windows 10 my Firefox Icon lists above the tasks all recent downloads which I do not want for security reasons. I have been deleting one at a time when shutting down.… (kàsi)

In Windows 10 my Firefox Icon lists above the tasks all recent downloads which I do not want for security reasons. I have been deleting one at a time when shutting down. I don't want them there at all. Please help. Thanks

Asked by DocGuin Wayne 5 àwọn wákàtí sẹ́hìn