Showing questions tagged: Show all questions

Remove logins and passwords

I want to delete firefox logins info and to make sure passwords and logins are never stored. I go to passwords, open up menu, and the "remove all passwords" choice is gr… (read more)

I want to delete firefox logins info and to make sure passwords and logins are never stored. I go to passwords, open up menu, and the "remove all passwords" choice is greyed out. How can I get that choice it be valid and to impliment that operation?? And to never have these stored??

Asked by MrJaakay 2 weeks ago

Last reply by cor-el 2 weeks ago

Firefox is blocking my own website

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox. … (read more)

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox.

Asked by joyce.fitch 2 weeks ago

Last reply by cor-el 2 weeks ago

Wyłączenie blokady reklam

Dzień dobry, W mojej przeglądarce chciałabym skorzystać z czatu GPT, ale pojawia się komunikat, że żeby skorzystać muszę wyłączyć blokadę reklam. Szukałam takiego czegoś … (read more)

Dzień dobry, W mojej przeglądarce chciałabym skorzystać z czatu GPT, ale pojawia się komunikat, że żeby skorzystać muszę wyłączyć blokadę reklam. Szukałam takiego czegoś w ustawieniach i firefox support, ale nie znalazłam nic co by pomogło w wyłączeniu blokady reklam. Czy mógłby mi ktoś pomóc i pokierować jak mogłabym wyłączyć blokadę reklam? Jeśli tak, byłabym wdzięczna.

Proszę o szybką odpowiedź

Pozdrawiam Lena Cieślak

Asked by Lena Cieślak 1 month ago

Last reply by cor-el 1 month ago

an unknown source is stealing info from apps that they download that i cannot get rid of.

There is a serious problem. Some entity is downloading apps on my phone that are tracking me and stealing information off of my phone and they have made it so that I cann… (read more)

There is a serious problem. Some entity is downloading apps on my phone that are tracking me and stealing information off of my phone and they have made it so that I cannot delete the apps and they came put in a plain van and ran cables from our internet box outside to the other box and ever since then they have had access to our wireless internet, our Apple t.v, our computers and our phones and I have tried to factory reset my phone but they just download the same apps over again and it messes my phone up again. That is the problem.

Asked by Ag.millsy351088 2 weeks ago

Last reply by Paul 2 weeks ago

wrong certificate shown

Hello. For some reason I haven't been able to figure, thunderbird keeps showing me the wrong certificate. I have an account with the server name "mail.estesc.ipc.pt" but… (read more)

Hello.

For some reason I haven't been able to figure, thunderbird keeps showing me the wrong certificate. I have an account with the server name "mail.estesc.ipc.pt" but when fetching email, thunderbird shows me a certificate for "cl.estesc.ipc.pt", does any one know why this happens or how to fix it?

Thanks.

Asked by psilva2001 3 weeks ago

Last reply by Matt 3 weeks ago

Change of primary email adress

My provider has deleted my email account without prior notification. I have no second email adress registered, and also no access to my old email adress. How can I chang… (read more)

My provider has deleted my email account without prior notification. I have no second email adress registered, and also no access to my old email adress.

How can I change my primary email adress now?

Asked by martin.rusch 2 weeks ago

Last reply by cor-el 1 week ago

Usernames

When logging into an account there are multiple usernames (incorrect or older.) I would like to remove or delete them, but keep the current passwords. Is that possible … (read more)

When logging into an account there are multiple usernames (incorrect or older.) I would like to remove or delete them, but keep the current passwords.

Is that possible without deleting the account?

Thank you, rldelahay

Asked by Regina 2 weeks ago

Last reply by cor-el 2 weeks ago

help to access thunderbird account

i have been away from my pc for 6 weeks and cannot access thunderbird. it repeated states that the login server IMAP.telstra.com failed my email hillsec@bigpond.net.au … (read more)

i have been away from my pc for 6 weeks and cannot access thunderbird. it repeated states that the login server IMAP.telstra.com failed my email hillsec@bigpond.net.au i have tried changing the in server and outgoing server to match my ipad and iphone which can receive emails. please help me to restore everything in thunderbird.

Asked by Karen Cole 3 weeks ago

Last reply by david 3 weeks ago

unwanted background connection while starting mozilla firefox browser

Hello, I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast no… (read more)

Hello,

I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast notification always show this message every time I start up Firefox : please check the uploaded images : FPA Scam.jpg.

I already checked the extenstion, the Settings, and the Advance Settings of Firefox browser. I'd like to know if there is any parameter related to engine.forexpeacearmy.com and it is enabled. Unfortunately, I can't found any related parameters.

So, I decide to contact Firefox support to find out what happen to my Firefox browser, why it always call the forexpeacearmy site at the start up, and finally I want to remove it. Because I'm affraid it could be some kind of trojans / malwares and put my laptop into risks.

Kindly need your advise. Thank you.

Kind regards, Gideon

Asked by gidhsk 2 weeks ago

Last reply by zeroknight 1 week ago

New primary password not accepted

I had to reset my primary password. Now the new password is not being accepted. And I keep getting a pop-up asking for the password. What can I do to have my password … (read more)

I had to reset my primary password. Now the new password is not being accepted. And I keep getting a pop-up asking for the password. What can I do to have my password accepted?

I already tried to un-check "use primary password" in settings but cannot accomplish that with a password that is rejected.

Asked by brooklynseltzer 2 weeks ago

Last reply by cor-el 2 weeks ago

I want to write an addon firewall but it fails

#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy A… (read more)

#!/bin/bash

# Verzeichnis erstellen
mkdir FoxyAddOnFirewall
cd FoxyAddOnFirewall || exit

# package.json erstellen
cat <<EOF > package.json
{
  "title": "Foxy AddOn Firewall",
  "name": "foxy-addon-firewall",
  "description": "A Firefox addon to control internet access for other addons",
  "author": "Your Name",
  "version": "1.0.0",
  "license": "MIT"
}
EOF

# background.js erstellen
cat <<EOF > background.js
var permissionManager = Components.classes["@mozilla.org/permissionmanager;1"]
                        .getService(Components.interfaces.nsIPermissionManager);

// Addon-Liste abrufen
function getAllAddons() {
    var {AddonManager} = Components.utils.import("resource://gre/modules/AddonManager.jsm", {});
    return new Promise(function(resolve, reject) {
        AddonManager.getAllAddons(function(addons) {
            resolve(addons);
        });
    });
}

// GUI aktualisieren
function updateUI() {
    getAllAddons().then(function(addons) {
        var addonList = document.getElementById("addon-list");
        addonList.innerHTML = ""; // Zurücksetzen der Liste

        addons.forEach(function(addon) {
            var listItem = document.createElement("li");
            listItem.textContent = addon.name;
            
            var blockButton = document.createElement("button");
            blockButton.textContent = "Block";
            blockButton.addEventListener("click", function() {
                blockInternetAccessForAddon(addon);
            });

            listItem.appendChild(blockButton);
            addonList.appendChild(listItem);
        });
    });
}

// Internetzugriff für ein bestimmtes Addon blockieren
function blockInternetAccessForAddon(addon) {
    var host = addon.getResourceURI("").host;
    permissionManager.remove(host, "allAccess");
    console.log("Internetzugriff für " + addon.name + " wurde blockiert.");
}

document.addEventListener("DOMContentLoaded", function() {
    updateUI(); // GUI beim Laden der Seite aktualisieren
});
EOF

# index.html erstellen
cat <<EOF > index.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Foxy AddOn Firewall</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <h1>Foxy AddOn Firewall</h1>
  <p>Welcome to Foxy AddOn Firewall!</p>

  <h2>Installed Addons:</h2>
  <ul id="addon-list">
    <!-- Addon-Liste wird hier eingefügt -->
  </ul>

  <script src="background.js"></script>
</body>
</html>
EOF

# style.css erstellen
cat <<EOF > style.css
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
}

h1 {
  color: #007bff;
}

h2 {
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
EOF

# manifest.json erstellen
cat <<EOF > manifest.json
{
  "manifest_version": 2,
  "name": "Foxy AddOn Firewall",
  "version": "1.0",
  "description": "A Firefox addon to control internet access for other addons",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "management"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  }
}
EOF

# Icon herunterladen
wget -O icon.png "https://img.icons8.com/ios-filled/50/000000/firewall.png"

# Installationsanweisungen anzeigen
echo "FoxyAddOnFirewall wurde erfolgreich initialisiert!"
echo "Um das Addon in Firefox zu installieren:"
echo "1. Öffnen Sie Firefox und geben Sie 'about:debugging' in die Adressleiste ein."
echo "2. Klicken Sie auf 'Dieses Firefox installieren' unter 'Temporäre Add-ons laden'."
echo "3. Navigieren Sie zum Verzeichnis 'FoxyAddOnFirewall' und wählen Sie die 'manifest.json' Datei aus."
echo "4. Das Addon wird nun installiert und kann verwendet werden."

Asked by j.sobiech 3 weeks ago

Last reply by jscher2000 - Support Volunteer 3 weeks ago

Latest version Disables Real Address Addon

Why is it impossible for Thunderbird to have an option to display the real senders email address instead of just the "fake" display and return address? I use an addon to… (read more)

Why is it impossible for Thunderbird to have an option to display the real senders email address instead of just the "fake" display and return address?

I use an addon to add the true address column in version 102, but as usual Mozilla upates disable useful security related updates.

When is Thunderbird going to show this essential true address instead of spending so much time changing the look and feel?

I am stuck with version 102 or another email client until this changes.

Asked by nothimagain 4 weeks ago

Last reply by sfhowes 4 weeks ago

cannot log into Thunderbird with password that was set up

Hello, I got a tale of two computers with Thunderbird on both. First, I will start with my HP Laptop, its my primary computer due to its speed. I went to check my email… (read more)

Hello, I got a tale of two computers with Thunderbird on both. First, I will start with my HP Laptop, its my primary computer due to its speed. I went to check my emails this morning. I double click on the TBird icon on my desktop. It does not open. Waited a few seconds, tried again and again. Finally, a folder containing pictures opened up. Then, I went to open FireFox, and that same folder with pictures opened. I tried this like five times and the same thing happened. Then I got to thinkin, when I went to shut it down the other day, it said "update and shut down", so I did. Now that I remembered the update, I decided to go back in time to when the laptop was running real good. So I did that recovery, in doing so, it wiped out some of the applications I had on my computer, such as FoxFire, Thunderbird, Adobe, HP printer, CCleaner, and probably others that I seldom used. Somehow, I got to the point where I reinstalled Thunderbird. The only thing is, it would not let me in. When double clicking on the icon, it took me to a page that just wanted my name, email address and password. I enter the info, that page stayed open and added a few more items to the page, such as IMAP and POP3 stuff. IMAP was already selected by Tbird. I then had the option to click "done" . In doing that, it said "Unable to log into server. Probably wrong configuration, username or password" So there's that. Cannot even see the email program. Second part of the mystery, I have an old Gateway desktop. Its slower than slow. I only use it in emergencies, as the above scenario. I fire it up, wait about 5 minutes before I open Thunderbird on that. Guess what, it wants a password. Whats different about this deal is that the email opens, and I can see all my previous emails, but cannot receive or send. I have no Idea whats going on, unless its my deceased wife coming back to haunt me...I don't know.

Asked by dano 1 month ago

Last reply by Matt 1 month ago

What and where is my Security Key and how do I touch it?

Please see the attached image. Firefox believes I have a security key. What is a security key? Where do I find it? Why does Firefox think I have one? And why is the… (read more)

Please see the attached image.

Firefox believes I have a security key.

What is a security key? Where do I find it? Why does Firefox think I have one?

And why is there no helpful information to explain this confusing UX?

Asked by kurrent93 4 weeks ago

Last reply by zeroknight 4 weeks ago

Browser no longer asking for primary password

This started a few weeks ago. I thought it might have been because I synced the passwords with other devices. I reverted it back. When in about:logins, I click on the l… (read more)

This started a few weeks ago. I thought it might have been because I synced the passwords with other devices. I reverted it back.

When in about:logins, I click on the log in button but nothing happens.

Asked by l s p 2 weeks ago

Last reply by cor-el 2 weeks ago

Recent issue viewing my Shopify site

Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have thi… (read more)

Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have this issue on Safari, or on Firefox when I open a private browsing window. It is something to do with Firefox, but I don't want to have to open a private window every time I go to my store. Is there a solution? This has only been happening for the last few days. Thanks

Asked by leslie.day 3 weeks ago

Last reply by zeroknight 3 weeks ago