ট্যাগ লাগানো প্রশ্নগুলো দেখানো হচ্ছে। সমস্ত প্রশ্ন দেখান
  • মীমাংসিত

Thunderbird changes hotmail password?

I've appreciated using Thunderbird for an ad-free Hotmail experience for quite some time. I've changed my Hotmail password every few weeks lately and Thunderbird worked … (আরও পড়ুন)

I've appreciated using Thunderbird for an ad-free Hotmail experience for quite some time. I've changed my Hotmail password every few weeks lately and Thunderbird worked fine when I entered the new password at the prompt when Thunderbird started.

Just now however, I needed to get into my Microsoft account that uses the same password as my Hotmail account. My login to Microsoft failed. Trying to understand why, I looked in Thunderbird at the saved password for Hotmail's server:

oauth://login.microsoftonline.com (https://outlook.office.com/IMAP.AccessAsUser.All

https://outlook.office.com/POP.AccessAsUser.All 
https://outlook.office.com/SMTP.Send offline_access)

The saved password was a 464 character long ASCII string totally irrelevant to the password I'd selected for Hotmail and Microsoft.

I went through the password change process for Hotmail, was then able to get into my Microsoft account and restarted Thunderbird. As usual, Thunderbird asked for the new password. I entered it and was then able to receive new mail from the Hotmail server in Thunderbird. However, again, the saved password in Thunderbird for Hotmail was not the password I'd entered.

Next, I deleted the saved passwords in Thunderbird, restarted it and this time it prompted me to be sure I'd downloaded it from a reliable source. I've never seen that prompt before. It came with my Linux Mint installation, so I thought it would be safe, but again there's an irrelevant password saved for my Hotmail account.

It's like it eventually changes my password for Hotmail and Microsoft since I can get mail through Thunderbird with the odd password it saves, but if I use what should be my password for Hotmail or my Microsoft account via a web page interface, the password doesn't work.

I'll have to stop using Thunderbird if this continues.

Asked by change2peace+firefox 4 মাসসমূহ আগে

Answered by Stans 4 মাসসমূহ আগে

  • মীমাংসিত

Does PGP encrypt attachments?

I am using Thunderbird 115.10.1. I want to send an encrypted email with attachments of different types (pdf, docs, images, zips,...) I have set up PGP following this gui… (আরও পড়ুন)

I am using Thunderbird 115.10.1. I want to send an encrypted email with attachments of different types (pdf, docs, images, zips,...)

I have set up PGP following this guidance: https://support.mozilla.org/en-US/kb/openpgp-thunderbird-howto-and-faq#thunderbird:linux:tb115


And I have confirmed it is working with Edward following this guidance: https://emailselfdefense.fsf.org/en/

But I have tried looking online to check, are the attachments to the email also encrypted?

Asked by andres20 3 দিনসমূহ আগে

Answered by christ1 2 দিনসমূহ আগে

  • মীমাংসিত

Firefox Android Notification Bitwarden

I keep getting these notifications, and because they relate to Bitwarden" I'm very reluctant to just click on the "accept" button in the message because of the possibilit… (আরও পড়ুন)

I keep getting these notifications, and because they relate to Bitwarden" I'm very reluctant to just click on the "accept" button in the message because of the possibility of a scam and the exposure it may create.

Is the notification genuine? How do I know? How can I update Firefox settings to achieve the same result without responding to the notification?

Bit paranoid I accept, but better careful than having regrets! Thks

Asked by Mildred PC 6 দিনসমূহ আগে

Answered by Mildred PC 3 দিনসমূহ আগে

  • মীমাংসিত

Most sites will not connect due to security issues

I am running Firefox 126.0-1 on an Arch Linux system. Most websites are failing to connect for security reasons. Some sites, including google.com and nytimes.com, fail w… (আরও পড়ুন)

I am running Firefox 126.0-1 on an Arch Linux system. Most websites are failing to connect for security reasons.

Some sites, including google.com and nytimes.com, fail with an "SEC_ERROR_UNKNOWN_ISSUER" error, and their certificates confirm that they are respectively issued by Google Trust Services LLC and DigiCert Inc.

The website archlinux.org errors with "MOZILLA_PKIX_ERROR_MITM_DETECTED", stating that "Software is Preventing Firefox From Safely Connecting to This Site", citing in particular ISRG Root X1 as the problem. The certificate confirms that it is issued by Let's Encrypt.

The website duckduckgo.com simply errors with "SEC_ERROR_PATH_LEN_CONSTRAINT_INVALID" and states "Secure Connection Failed"

I have confirmed in preferences that my proxy settings are set to "No proxy" and the problem persists across troubleshooting mode and making a new profile. I have also tried removing the cert9.db file in a given profile folder.

Asked by david.carlip 4 দিনসমূহ আগে

Answered by david.carlip 4 দিনসমূহ আগে

  • মীমাংসিত

macOS disable Firefox default browser prompt non-interactively

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser. I am using the following script to create the profile and set the user p… (আরও পড়ুন)

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser.

I am using the following script to create the profile and set the user preferences after installing Firefox by copying `Firefox.app` from the downloaded DMG: ```

  1. !/bin/sh

open -a Firefox.app --args -CreateProfile default sleep 1

write_userpref() { USER=$(whoami) PROFILE=$(ls -1 "/Users/${USER}/Library/Application Support/Firefox/Profiles/" | grep -E "\.default$") cat << EOF > "/Users/${USER}/Library/Application Support/Firefox/Profiles/${PROFILE}/user.js" // mandatory comment? user_pref("app.update.auto", false); user_pref("app.update.disable_button.showUpdateHistory", false); user_pref("app.update.enabled", false); user_pref("breakpad.reportURL", ""); user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.tabs.crashReporting.sendReport", false); user_pref("browser.discovery.enabled", false); user_pref("browser.defaultbrowser.notificationbar", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", false); user_pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); user_pref("browser.newtabpage.enabled", false); user_pref("experiments.enabled", false); user_pref("extensions.pocket.enabled", false); user_pref("toolkit.telemetry.enabled", false); user_pref("update_notifications.enabled", false); EOF }

write_userpref

open -a Firefox.app --args -new-tab -P default "about:blank" sleep 3 osascript -e 'quit app "Firefox"' sleep 2

open -a Firefox.app --args -P default about:blank ```

Here's the behaviour I'm seeing:

  1. Firefox starts to an `about:blank` tab, however there is a second "Firefox Privacy Notice" tab
  2. AppleScript quits Firefox
  3. Firefox starts to an `about:blank` tab, however it is now prompting me to make it the default browser

I do not want Firefox to prompt the user to become the default browser.

My ideal scenario is that Firefox starts without the "Firefox Privacy Notice" tab and without prompting me to make it the default browser. From the observed behaviour, this doesn't seem possible.

Can anyone tell me how I can accomplish this without user interaction or MDM?

Asked by hal.martin 5 দিনসমূহ আগে

Answered by hal.martin 5 দিনসমূহ আগে

  • মীমাংসিত

Is there a way to turn off tracking URL fragment insertion from the release notes page when clicking "What's New" in the Firefox update modal?

Is there a way to turn off tracking URL fragment insertion from the release notes page when clicking "What's New" in the Firefox update modal? When I click "What's New" … (আরও পড়ুন)

Is there a way to turn off tracking URL fragment insertion from the release notes page when clicking "What's New" in the Firefox update modal?

When I click "What's New" in this modal (see Screenshot 1), it loads the release notes page for my current version (although it really should load the release notes page for the version it wants me to upgrade to, but that's another issue altogether), and inserts a bunch of tracking URI fragments onto the URL (see Screenshot 2).

Is there a way (in Settings, about:config, Windows Registry, etc.) to disable that fragment insertion?

Asked by Tyler 1 সপ্তাহ আগে

Answered by jscher2000 - Support Volunteer 1 সপ্তাহ আগে

  • মীমাংসিত

default account

I have 4 e-mail accounts in TB, and I want to switch from the current default account to another. But how do I do that. I cannot see any button, place where to do that in… (আরও পড়ুন)

I have 4 e-mail accounts in TB, and I want to switch from the current default account to another. But how do I do that. I cannot see any button, place where to do that in the settings. Why the heck does TB needs to be so tricky to deal with, compared to Outlook?

Asked by music19 1 মাস আগে

Answered by david 1 মাস আগে

  • মীমাংসিত

Having issues with Thunderbird not retaining mail account and password

I am having issues with Thunderbird not retaining my email server and passwords. Each time I want to send an email, it prompts me for the password and then tells me that … (আরও পড়ুন)

I am having issues with Thunderbird not retaining my email server and passwords. Each time I want to send an email, it prompts me for the password and then tells me that the email address and server don't match. I have tried numerous times to correct this, but it doesn't hold the information. It also switches the server info between accounts. I have 3 different email account and sometimes only one works correctly

Asked by tasman27 2 সপ্তাহসমূহ আগে

Answered by sfhowes 2 সপ্তাহসমূহ আগে

  • বন্ধ করা আছে

Triplicate of Problem

thank you for taking out my new real email that I wish to use a sign-in ID I read the ibstructions to not leave personal info.But I was wondering how Iwould get an answer… (আরও পড়ুন)

thank you for taking out my new real email that I wish to use a sign-in ID I read the ibstructions to not leave personal info.But I was wondering how Iwould get an answer -- and of course I just have to check back here regulary. If Mr. Moderrator you know a link to solve my problem I would appreciate.

Sincere Thanks Paul

Windows 10 --22H2 ---Sorry.

Asked by Paul Ellis 2 সপ্তাহসমূহ আগে

Last reply by cor-el 2 সপ্তাহসমূহ আগে

  • বন্ধ করা আছে

SIGN in ID/EMAIL

The email acount I was using to sign-in to Firefox has been breached annd the onlyway I can recover it involves sending drivers license photo and current photo ofmy delf … (আরও পড়ুন)

The email acount I was using to sign-in to Firefox has been breached annd the onlyway I can recover it involves sending drivers license photo and current photo ofmy delf -- ehich would not prove snything. If somebody hsd my enough info they could fake that easy enough. Although they have takenaway allour privacy I refuse to send them that info.

If I had simply said I need helpchanging my password they never would have known. I was honest about the reason I needed a new password. Ended in my contacting Paypal and telling them to not acceot any more charges as I had the Premium email.

So noe I need a new sign-in here and Firefox becuase if I am asked code to be retrieved from that provider I won't be able to get it.

If someone can help me please send notice to : [email address]

Thanks in advance Paul

Asked by Paul Ellis 2 সপ্তাহসমূহ আগে

Last reply by Paul 2 সপ্তাহসমূহ আগে

  • মীমাংসিত

Outgoing settings?

'Sending of the message failed. Unable to authenticate to Outgoing server (SMTP) mail.btinternet.com. Please check the password and verify the 'Authentication method' in… (আরও পড়ুন)

'Sending of the message failed. Unable to authenticate to Outgoing server (SMTP) mail.btinternet.com. Please check the password and verify the 'Authentication method' in 'Account Settings | Outgoing server (SMTP)'.

Hello

I have been using Thunderbird as my email service and not had this before. Yesterday, I had to change my password for emails with BT. I changed it on Thunderbird too but now I am receiving emails OK on Thunderbird it is refusing to send any for me and shows the above message. I can send OK from my web based BT email but prefer Thunderbird.

I haven't a clue what I need to do to solve this.

Can you please help? Please tell me is very simple steps I'm not very computer savvy.

Thank you

Asked by tylex.polystyrene 2 সপ্তাহসমূহ আগে

Answered by Toad-Hall 2 সপ্তাহসমূহ আগে

  • মীমাংসিত

Correct syntax for privacy.fingerprintingProtection.granularOverrides?

Hello, I am trying to force two or three websites to detect my timezone as UTC, even though my local system time is not UTC. I figured out how to do this with ALL sites … (আরও পড়ুন)

Hello,

I am trying to force two or three websites to detect my timezone as UTC, even though my local system time is not UTC. I figured out how to do this with ALL sites by setting privacy.fingerprintingProtection to "true" and entering "+JSDateTimeUTC" in privacy.fingerprintingProtection.overrides in about:config.

Now according to docs, privacy.fingerprintingProtection.granularOverrides "can be used to add or remove features on a domain granular level if privacy.fingerprintingProtection is enabled," but I can't figure out how to get it working.

Any input is appreciated.

Asked by RSizington 2 সপ্তাহসমূহ আগে

Answered by jscher2000 - Support Volunteer 2 সপ্তাহসমূহ আগে

  • মীমাংসিত

Opening Firefox with a password without setting up Firefox sync

I simply want to use a password to open Firefox. I don't want to set up Firefox sync. How can I set up a simple password as permission to open Firefox without accessing s… (আরও পড়ুন)

I simply want to use a password to open Firefox. I don't want to set up Firefox sync. How can I set up a simple password as permission to open Firefox without accessing sync?

Asked by exodu 2 সপ্তাহসমূহ আগে

Answered by cor-el 2 সপ্তাহসমূহ আগে

  • মীমাংসিত

How do YouTube recommendations identify my Firefox?

The story is when I accidentally clicked on a sick video, YouTube start to recommend me similar sick videos. So my question is how does YouTube get my identity? I'm no… (আরও পড়ুন)

The story is when I accidentally clicked on a sick video, YouTube start to recommend me similar sick videos.

So my question is how does YouTube get my identity?

I'm not logged in. my profile is actually a snapshot, so when I restart Firefox, it go back to the snapshot. I even restarted my ISP router to get a new IP address. This did not work.

Only when I create a new profile with "firefox -P" does YouTube start to see me as a new person.

So how does YouTube identify my Firefox profile? I don't think it's in the https request headers. Weird.

Asked by hi210 3 সপ্তাহসমূহ আগে

Answered by Paul 3 সপ্তাহসমূহ আগে

  • বন্ধ করা আছে

How to restrict website on specific country?

Our website The Last Price is based in Qatar that have different category products like iPhone Mobile Phones, Tablets & Earbuds, Home Appliances, Accessories (Mobile … (আরও পড়ুন)

Our website The Last Price is based in Qatar that have different category products like iPhone Mobile Phones, Tablets & Earbuds, Home Appliances, Accessories (Mobile Covers & Cases, Keyboards & Controllers, etc.) and many other eCommerce products.

As I mention above that we have different ecommerce products which we only want to sell in Qatar but we are getting some other countries traffic like USA, Pakistan, Germany, Brazil, Argentina, so how we can block these countries or anything in Google Search Console which help to keep the website with country specific?

Is there any specific Mozilla Firefox extension that you recommend or any HTML code help to block other country traffic?

Thanks John The Last Price : https://www.the-lastprice.com/

Asked by workup89 3 সপ্তাহসমূহ আগে

Last reply by jscher2000 - Support Volunteer 3 সপ্তাহসমূহ আগে

  • মীমাংসিত

Openpgp: inline or s/mime encryption

I have imported a public key in my openpgp key-management/ In my settings of the end -to-end keys: preference of key technology: choose auto the key technology by the ava… (আরও পড়ুন)

I have imported a public key in my openpgp key-management/ In my settings of the end -to-end keys: preference of key technology: choose auto the key technology by the available keys. I have read openpgp standard supports inline en s/mime encryption but what is used by thunderbird when I choose openpgp as key encryption when i type/send an email (w/o attachment by myself). I ask it because my correspondent only decrypts inline encryption.

Asked by Boerken2 3 সপ্তাহসমূহ আগে

Answered by Kai Engert 3 সপ্তাহসমূহ আগে

  • মীমাংসিত

I can't log out from a site using an old version of firefox. Impossible to get locked out anymore which would be important though!

Hi I have been using firefox on linux for a while without updating it. We are artsellers and I used to be able to log in and out of an artplatform without any problems. I… (আরও পড়ুন)

Hi I have been using firefox on linux for a while without updating it. We are artsellers and I used to be able to log in and out of an artplatform without any problems. It's now been a few weeks since logging out is not possible any more on this platform which means that I am constantly logged in which I really do not want. The menu does not work anymore on this side whereas it works with other browers. I already contacted the platform. They cannot do anything about it themselves and asked me to contact your team. Please help. Thank you Best regards from Germany C. Marsac

Asked by asupta 1 মাস আগে

Answered by asupta 3 সপ্তাহসমূহ আগে