Showing questions tagged: Show all questions

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 3 weeks ago

Last reply by Paul 3 weeks ago

White screen in Firefox

There are a few websites (e.g., https://thehermitagehotel.com/) that show up as a white screen (see attached) when I visit them from Firefox using my usual settings, but … (read more)

There are a few websites (e.g., https://thehermitagehotel.com/) that show up as a white screen (see attached) when I visit them from Firefox using my usual settings, but show up correctly if I use Firefox in private browsing mode. Turning off enhanced tracking protection does not resolve the problem. My browser privacy in Settings is set to "Custom" with everything checked, but changing to Standard and reloading the site does not fix the issue. As I noted above, the only thing that works is to open the site in private browsing mode. Most sites work fine. This problem is limited to 2-3 websites. My version of Firefox is 125.0.1 .

Asked by ellad.tadmor 3 weeks ago

Last reply by cor-el 3 weeks ago

how to disable new Firefox feature?

I heard that the newest version of Firefox (which I have not upgraded to yet) has a feature that makes it easier to accidentally visit a website whose URL is on the clipb… (read more)

I heard that the newest version of Firefox (which I have not upgraded to yet) has a feature that makes it easier to accidentally visit a website whose URL is on the clipboard. I googled to find out how to disable it, and the Featured Snippet said "go to about:config and change clipboard.autocopy to false." Sounded simple, so I did it, but subsequently found out that the article it quotes from is 10 years of age!

My first question, then, is: what does changing "clipboard.autocopy" to false do if it doesn't turn off the brand-new feature?

The second question is, how do I disable the new URL Paste Suggestion feature? Will setting "clipboard.autocopy" disable it? In particular, I want to make sure that the browser does not pre-load or pre-fetch the clipboard URL, and in fact, I wish to pop up a dialog box any time I do "paste and go." People often copy URLs from e-mails to research them before visiting them directly; jumping directly will increase the likelihood of visiting an imposter site.

Asked by 4232jl 3 weeks ago

Last reply by zeroknight 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

Spying

When one stops the Firefox shortcuts, does this means amazon can no longer setup spy visits using camera and other permissions left over from installing Firefox. Why can … (read more)

When one stops the Firefox shortcuts, does this means amazon can no longer setup spy visits using camera and other permissions left over from installing Firefox. Why can consumers, at the time of installing, not offer the choice of no permissions for companies paying Firefox?

Asked by pat47 3 weeks ago

Last reply by TyDraniu 3 weeks ago

Primary pass work

I tried to delete my primary password online, but system would not allow me to do so. I have exhausted all avenues to seek help, but to no avail. Any assistance would … (read more)

I tried to delete my primary password online, but system would not allow me to do so. I have exhausted all avenues to seek help, but to no avail. Any assistance would be greatly appreciated. Tmg3842@yahoo.com

Asked by tmg3842 1 month ago

Last reply by cor-el 1 month ago

Reconnecting to Thunderbird

As a longtime user and a regular subscriber to Mozilla, I can’t get access to Thunderbird. Reason is that I had to repair the hard drive and now I am locked out. I am una… (read more)

As a longtime user and a regular subscriber to Mozilla, I can’t get access to Thunderbird. Reason is that I had to repair the hard drive and now I am locked out. I am unable to insert a master password because I never had one. Reason being that I have used Thunderbird for years and years before that was required. To say I am frustrated is an understatement. None of your automated advice has a remedy. Should I install a new version of Thunderbird and begin afresh? John Cotterell ( an Australian supporter of your project)

Asked by Billy Bunter 1 month ago

Last reply by david 1 month ago

Another application is attempting to send mail using your user profile.

Hello; Using Thunderbird v115.10.1 (64-bit) on Windows 10 PRO. Once a month or so, I need to send some emails from another application. Keep getting the warning about "… (read more)

Hello;

Using Thunderbird v115.10.1 (64-bit) on Windows 10 PRO.

Once a month or so, I need to send some emails from another application. Keep getting the warning about "Another application is attempting to send mail using your user profile" (image attached).

OK... a very good warning.

But... I don't want to have to click <OK> every time an email is sent.

So... I unchecked the checkbox.

Warning gone... works great.

Now... I want to re-enable that warning in case a rogue application tries to send an email.

Have looked, and looked, and looked under \Tools\Settings and \Tools\AccountSettings.

Can not find how to re-enable this (if it's there I am looking right at it and not seeing it).

Can anyone help?

Also used regedit to search the Windows registry, but could not find it.

Also... is there a way to change settings from a CLI (would be nice to disable this warning, send the emails, then re-enable is all programmatically.

TIA.

Bo...

Asked by bopeep2120 3 weeks ago

Last reply by david 3 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

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 3 weeks ago

Last reply by cor-el 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 1 month ago

Last reply by sfhowes 1 month ago

can't use YouTube....... everything is too slow...???.?..

I said it all in the in the opening statement... What else am I meant to say?????????? It worked fine 2 weeks ago..? But now forget it!!!!!!! What has changed....you must… (read more)

I said it all in the in the opening statement... What else am I meant to say?????????? It worked fine 2 weeks ago..? But now forget it!!!!!!! What has changed....you must know ... So don't ask me just fix it!!!!!!

Asked by Leon.Jaeggi 1 month ago

Last reply by Paul 1 month 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 1 month ago

Last reply by Matt 1 month ago

downloading a file from an insecure source

We have an electronic document management system in our company. The system is an internal system without access to the LAN. Firefox detects files downloaded from it as p… (read more)

We have an electronic document management system in our company. The system is an internal system without access to the LAN. Firefox detects files downloaded from it as potentially dangerous after the last update. Is there a way to prevent files from this website from being detected as potentially dangerous?

Asked by Konrad Dymczuk 1 month ago

Last reply by zeroknight 1 month 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 3 weeks ago

Last reply by cor-el 3 weeks 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 1 month ago

Last reply by zeroknight 1 month ago