Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo

Enable/Disable Show Passwords

April 15, 2024 Thunderbird is Insecure There is missing functionality issues 1. How to Disable the "SHOW PASSWORD" Button in Security Settings 2. Either implement with a… (funda kabanzi)

April 15, 2024 Thunderbird is Insecure There is missing functionality issues

1. How to Disable the "SHOW PASSWORD" Button in Security Settings 2. Either implement with a Password Password option, only to show the Passwords or 3. Allow the ability to Disable the Button

back in 1916-18 the ability to disable the "SHOW PASSWORD" Button worked with with a variation of the following at that time user_pref("pref.privacy.disable_button.view_passwords", true); I believe I created and used chrome.css or chrome.js

At some point this functionality ceased to work.

Now, I have scoured the Net to figure out a Solution simply setting the value to True, gets reset by Thunderbird, TB does not save it. it always reverts back to False and the button remains available and does not disable

I have tried everything, adding it in user.js, settings.js, userChrome.js I put it in every directory, nothing seems to work

Do I have to Lock it? - How? confusing and disappointing.

Please provide a simple step by step Solution to the problem

Thank you

Asked by icenews 1 inyanga edlule

Last reply by david 1 inyanga edlule

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 … (funda kabanzi)

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 emasontweni adlule

Last reply by TyDraniu 3 emasontweni adlule

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… (funda kabanzi)

#!/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 emasontweni adlule

Last reply by jscher2000 - Support Volunteer 3 emasontweni adlule

How can I directly open file links?

In our company, we have recently updated Thunderbird from version 52.3.0 to 115.9.0. Now we have a problem with href links containing file URIs in our messages. We often … (funda kabanzi)

In our company, we have recently updated Thunderbird from version 52.3.0 to 115.9.0. Now we have a problem with href links containing file URIs in our messages. We often receive file links pointing to files in our local intranet, which look like this: <a href="file://///intranet.local/dfs/output/movie.mp4" class="moz-txt-link-freetext" moz-do-not-send="true">movie.mp4</a> Up to Thunterbird version 98.0b3 it was possible to open these files by simply clicking the link. But since version 99.0b1 file links don't open any more. Instead, the error console displays the following message: Security Error: Content at mailbox:///C:/Users/username/AppData/Roaming/Thunderbird/Profiles/profilename/Mail/Local%20Folders/Inbox?number=12345 may not load or link to file://///intranet.local/dfs/output/movie.mp4. Fortunately, it is possible to open the link with "Open Link In Browser" from the context menu. But we would like to get rid of this extra click. I already followed the steps in this document: http://kb.mozillazine.org/Links_to_local_pages_do_not_work#Firefox_1.5.2C_Mozilla_1.8.2C_and_newer Interestingly, this document is older than the time, when our problem was introduced into Thunderbird. Consequently, when I follow these steps, file links still don't open in an external application. Instead, they open inside of Thunderbird which is not the desired effect. To put my question in a nutshell: How can I open file links by left-clicking on them, just the way they open, when I right-click on them and select "Open Link In Browser"?

Steps to reproduce: On a Windows computer create a new mail. Press Ctrl-K to insert a link. Enter the following path with username replaced by your windows logon name: file:///C:/Users/username/Documents Save and close the mail. Watch the mail in the drafts folder. Click the link. Nothing happens, but you can see a message in the error console. Right click the link and select "Open Link In Browser". This opens your windows explorer.

Any solution is welcome, even if it's potentially insecure, since our computers don't have any internet access and we can receive internal mail only.

Asked by Clemens 3 emasontweni adlule

Last reply by Toad-Hall 3 emasontweni adlule

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… (funda kabanzi)

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 3 emasontweni adlule

Last reply by zeroknight 2 emasontweni adlule

recover passwords file

Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue. now, … (funda kabanzi)

Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue.

now, i created an admin windows account get access to my old user files, found the bookmarks file. the only thing left for me now is the passwords file.i did not a Firefox online account before today

the only way currently if i did not solve the wind10 login issue is the find the passwords file physically just like i did with the bookmarks file.


can anyone help with this ??


thanks

Asked by OMVW 3 emasontweni adlule

Last reply by cor-el 3 emasontweni adlule

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… (funda kabanzi)

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 inyanga edlule

Last reply by Matt 1 inyanga edlule

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 "… (funda kabanzi)

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 emasontweni adlule

Last reply by david 3 emasontweni adlule

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… (funda kabanzi)

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 3 emasontweni adlule

Last reply by cor-el 3 emasontweni adlule

When is 'undisclosed-recipients' shown? Can I check who I sent the message to?

I wrote an email without putting in anyone for the 'TO:' or 'CC:' fields. The BCC: field only had my own email address in it. I accidentally sent this email before I ha… (funda kabanzi)

I wrote an email without putting in anyone for the 'TO:' or 'CC:' fields. The BCC: field only had my own email address in it.

I accidentally sent this email before I had sorted out the TO: and CC: fields properly.

In my sent email and it had 'undisclosed-recipients' in the To: field.

I found this disconcerting, since I wasn't SURE if I hadn't put anything in the CC: or TO: fields. I worried I may have sent a rough, poorly worded email to someone and that could backfilre.

Am I right that whenever 'undisclosed-recipients' is shown in the To: field and I sent the email, I can check in that sent email who was in the BCC: field and that should re-assure me who had actually recieved a copy of that email.

Clarity in this area would be VERY helpful.

Regards

   Mark

Asked by Mark Dunn 1 inyanga edlule

Last reply by Matt 1 inyanga edlule

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… (funda kabanzi)

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 inyanga edlule

Last reply by david 1 inyanga edlule

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 … (funda kabanzi)

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 1 inyanga edlule

Last reply by david 1 inyanga edlule

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… (funda kabanzi)

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 inyanga edlule

Last reply by zeroknight 1 inyanga edlule

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ś … (funda kabanzi)

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 inyanga edlule

Last reply by cor-el 1 inyanga edlule

"Mozilla Firefox Mobile Browser Crashing on Android: Seeking Troubleshooting Assistance"

"Hi there! I've been experiencing some difficulties with the Mozilla Firefox mobile browser on my Android device. Whenever I try to open certain websites, the browser cra… (funda kabanzi)

"Hi there! I've been experiencing some difficulties with the Mozilla Firefox mobile browser on my Android device. Whenever I try to open certain websites, the browser crashes unexpectedly. I've tried clearing the cache and reinstalling the app, but the issue persists. Could you please provide some guidance on how to troubleshoot this issue or any possible fixes? Thanks in advance for your help!"

Asked by Wendlland Tabler 1 inyanga edlule

Last reply by Paul 1 inyanga edlule

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… (funda kabanzi)

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 inyanga edlule

Last reply by sfhowes 1 inyanga edlule