I want to change from Mailfence to Thunderbird
When I signed up I was sent to Mailfence. I want to switch to Thunderbird. How is that done?
When I signed up I was sent to Mailfence. I want to switch to Thunderbird. How is that done?
TBird v102.12.0, 32bit, WIn7Ent. Just started this morning, I'm getting the following error on one POP3 account: The stat command did not succeed error getting message … (read more)
TBird v102.12.0, 32bit, WIn7Ent.
Just started this morning, I'm getting the following error on one POP3 account:
The stat command did not succeed error getting message number and sizes mail server outlook.office.365.com responded server unavailable 21
This is happening only in TBird--I can get that account's email via my iPhone's built in email app--and it is happening on multiple PCs that are similarly configured.
I have multiple accounts set up on office365 (via GoDaddy). Others are working fine with the same settings.
What I have done so far, with no joy:
I have successfully logged into Office365 directly
I have regressed to an earlier version of TBird.
I have deleted and recreated the problem account (which required resetting the password). The deletion/recreation succeeded, but email will still not download for that account.
I prefer not to use IMAP.
Outlook via Firefox shows titles, no content. Sometime I can read the content of the first email I select, but, no content appears in subsequent emails, just the titles.… (read more)
Outlook via Firefox shows titles, no content. Sometime I can read the content of the first email I select, but, no content appears in subsequent emails, just the titles. Outlook is OK via the Firefox safe mode, via Chrome, via MS Edge and via MAIL.
I have cleared cookies and cache. I have also tried About:config>extensions.webcompat.enable_shims changed to FALSE.
A sidebar with web addresses disappeared too. I think I have been done in by an update. What setting am I missing? I am using Firefox 114 with Windows 10
I'm currently working on building a website, and while testing several of the front end parameters I'm just hitting a wall with firefox incognito's ability to clear the c… (read more)
I'm currently working on building a website, and while testing several of the front end parameters I'm just hitting a wall with firefox incognito's ability to clear the cache.
After I clear the cache, it's obvious that it's worked on the regular browser, but no matter how many times I clear it, how long I wait (this has been a 2 day ordeal), or how much of the history, cookies, cache, etc that I clear, the private browser information will not clear. Closing all windows, restarting the computer doesn't work.
I've changed aspects to a form and other aspects to a particular page, and am in the middle of doing a conflict test so every one of my plugins are off so the site looks 100% different on the main browser, but the private browser is stuck in the past.
Thoughts?
Dear Mozilla Team, I have severe difficulties with my Windows computer to open many websites I want to open, even those of banks I normally can easily enter. Do you hav… (read more)
Dear Mozilla Team,
I have severe difficulties with my Windows computer to open many websites I want to open, even those of banks I normally can easily enter.
Do you have any advice for me how to fix that? I searched in the help function but found the advice to be insufficient. And I also found no way to manually change the setting for the individual pages.
Thank you very much for your help.
Annette
When using Chrome, I can easily save a website article on Google Drive from Pocket by printing as a pdf. However, when I try to perform the same activity when using Fire… (read more)
When using Chrome, I can easily save a website article on Google Drive from Pocket by printing as a pdf. However, when I try to perform the same activity when using Firefox, I get the dialogue box below. I really want to make Firefox my default browser but not being able to save from Pocket (or the web) to Google Drive when in Firefox is a deal breaker. Any suggestions would be appreciated!
Hi there, I've used (and liked using) Thunderbird as my email platform for more than a decade now. This morning I found out that my primary (GoDaddy supported) email acc… (read more)
Hi there,
I've used (and liked using) Thunderbird as my email platform for more than a decade now. This morning I found out that my primary (GoDaddy supported) email account is no longer compatible with POP or IMAP settings. I've been trying to make the necessary settings changes with help from GoDaddy tech support, but they can't ensure that my contacts, emails, etc. will be saved in the process. Can you please explain how I can export/back up everything in my Thunderbird account before I make changes to the account?
Thanks,
Steve Meyer srm@interstellar-media.com
I have recently installed Thunderbird version 102.12.0 as my email server. I created a "Default Identity" and put in my first and last name in the "Your Name" section. Wh… (read more)
I have recently installed Thunderbird version 102.12.0 as my email server. I created a "Default Identity" and put in my first and last name in the "Your Name" section. When I send emails, however, the recipient only sees my first name and email address in the "From" line. I would like them to see my first and last name and not to see the email address in the "From" line.
Thunderbird has lost the main body of emails from family members that I had archived over a year ago. The message subject still shows up in the archive folder, but the m… (read more)
Thunderbird has lost the main body of emails from family members that I had archived over a year ago. The message subject still shows up in the archive folder, but the message content is blank when I try to view it. I am not sure when this actually happened other than to say sometime in the last 12 months.. possibly during one of the may updates to Thunderbird.
I am hoping that the message bodies are still present in the database but since I can't view then when I click on the subject, I can't be sure.
If someone knows how to recover email in this condition, please let me know. Otherwise Thunderebird team: please fix this issue!!
inbox displays the subject and date only of new emails ie NO message is shown nor any activity eg delete, forward etc. Double click on email and it is displayed in a new … (read more)
inbox displays the subject and date only of new emails ie NO message is shown nor any activity eg delete, forward etc. Double click on email and it is displayed in a new window
Hi, I am working on websocket with javascript and php. Let me share my code here: index.php is: <title>WebSocket Chat</title> &l… (read more)
Hi, I am working on websocket with javascript and php. Let me share my code here:
index.php is:
<title>WebSocket Chat</title> <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self' cstechnologyindia.com:8080"> WebSocket Chat <input type="text" id="messageInput" placeholder="Type your message..."> <button id="sendButton">Send</button> <script> const socket = new WebSocket('wss://cstechnologyindia.com/websocket1'); // Function to save message on the server function saveMessage(message) { const xhr = new XMLHttpRequest(); xhr.open('POST', 'save-message.php'); xhr.setRequestHeader('Content-Type', 'application/json'); xhr.send(JSON.stringify({ message: message })); } // Function to fetch messages from the server function fetchMessages() { const xhr = new XMLHttpRequest(); xhr.open('GET', 'fetch-messages.php'); xhr.onreadystatechange = function() { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { const messages = JSON.parse(xhr.responseText); const chatBox = document.getElementById('chatBox'); messages.forEach(function(message) { const messageElement = document.createElement('div'); messageElement.textContent = message.fname; chatBox.appendChild(messageElement); }); } else { console.log('Error fetching messages:', xhr.status); } } }; xhr.send(); } // Event listener for receiving messages from the server socket.addEventListener('message', function(event) { const message = event.data; const chatBox = document.getElementById('chatBox'); const messageElement = document.createElement('div'); messageElement.textContent = message; chatBox.appendChild(messageElement); }); const sendButton = document.getElementById('sendButton'); sendButton.addEventListener('click', function() { const messageInput = document.getElementById('messageInput'); const message = messageInput.value; socket.send(message); messageInput.value = ''; // Save the sent message on the server saveMessage(message); }); // Fetch messages when the page loads fetchMessages(); </script>
server.php is:
use Ratchet\MessageComponentInterface; use Ratchet\ConnectionInterface; use Ratchet\Server\IoServer; use Ratchet\Http\HttpServer; use Ratchet\WebSocket\WsServer; use Symfony\Component\HttpFoundation\Request;class Chat implements MessageComponentInterface { protected $clients;public function __construct() { $this->clients = new \SplObjectStorage; }public function onOpen(ConnectionInterface $conn) { $request = $conn->httpRequest;// Handle the WebSocket handshake here // You can perform any necessary checks or validation before accepting the connection// Example: Check if the WebSocket upgrade header is present if (!$request->hasHeader('Upgrade') || strtolower($request->getHeader('Upgrade')[0]) !== 'websocket') { // Close the connection if the Upgrade header is missing or incorrect $conn->close(); return; } // Example: Check if the request contains the expected WebSocket version if (!$request->hasHeader('Sec-WebSocket-Version') || $request->getHeader('Sec-WebSocket-Version')[0] !== '13') { // Close the connection if the WebSocket version is not supported $conn->close(); return; } // Example: Check other necessary conditions // Store the connection $this->clients->attach($conn); } public function onMessage(ConnectionInterface $from, $msg) { $message = htmlspecialchars($msg); foreach ($this->clients as $client) { $client->send($message); } } public function onClose(ConnectionInterface $conn) { $this->clients->detach($conn); } public function onError(ConnectionInterface $conn, \Exception $e) { echo "An error has occurred: {$e->getMessage()}\n"; $conn->close(); } } $chat = new Chat; $server = IoServer::factory( new HttpServer( new WsServer($chat) ), 8080 ); $server->run();The websocket is working all the browser except only firefox. It gives error: Firefox can’t establish a connection to the server at wss://cstechnologyindia.com/websocket1.
I am trying to solve it from past 2 days. I'm using a shared hosting. The hosting provider is saying that everything is perfect from our side. Now I'm hopeless. Please solve my problem anyone. Please check added image. Also I've valid https certificate. Please check attached image.
Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path : file: C:\Users\(my name)\AppData\Roa… (read more)
Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path :
file: C:\Users\(my name)\AppData\Roaming\Mozilla\Firefox\Profiles\owhmdxi4.default-release\extensions\langpack-en-US@firefox.mozilla.org.xpi
below i have a picture of the addons i was using at the time and also the virus report.
I need a real person on the phone to sort out firefox not working properly.
Hi, I am unable to send any email messages to gmail addresses. This is the message I get every time : Reason: A message that you sent to the following recipient c… (read more)
Hi, I am unable to send any email messages to gmail addresses. This is the message I get every time :
Reason: A message that you sent to the following recipient could not be delivered due to a permanent error. ** The remote server ?? responded with: ** achardbeaven@gmail.com ??:?? This message was created automatically by mail delivery software on the server .
I get this for every gmail address I send to. I think I can send to these addresses using my own gmail account, but I need to be able to use Thunderbird.
Please help
Thanks
I just cant find my messages anymore. cant get sorted by date, or sorted by correspondent. chaos. and this is not the first issue I have with thunderbird (linux). Right n… (read more)
I just cant find my messages anymore. cant get sorted by date, or sorted by correspondent. chaos. and this is not the first issue I have with thunderbird (linux). Right now it seems to me it is unworkable.
Been working with TB windows for many years. works fine. It too had some flaws at times but at least it works. the linux version as I see it at this point seems to have major flaws. Yes, if your emails are nowhere to be found, that is a major flaw.
Perhaps the Mozilla guys have a solution but it should be intuitive right from the start. It's the essence of using an email client.
I might change my mind about TB-Lin if someone could show me how it's done, and if there is some logic to the way it works.
Again TB Win: great. TB Lin: all thumbs down at this point. Please prove me wrong.
John.
I need to open Thunderbird in hidden mode. I have tried various methods but none worked. I have write vba script: Dim WShell Set WShell = CreateObject("WScript.Shell") W… (read more)
I need to open Thunderbird in hidden mode. I have tried various methods but none worked. I have write vba script: Dim WShell Set WShell = CreateObject("WScript.Shell") WShell.Run """" & "C:\Program Files\Mozilla Thunderbird\thunderbird.exe" & """", 0 Set WShell = Nothing
I have tried PowerShell: Start-Process -WindowStyle hidden "C:\Program Files\Mozilla Thunderbird\thunderbird.exe"
And even the shortcut doesn't work when you select to run in minimized form.
Hello, Am using Mozilla Firefox installed via flatpak on openSUSE. Certain pdfs display correctly but other pdfs displayed with Firefox (either locally or online) are di… (read more)
Hello,
Am using Mozilla Firefox installed via flatpak on openSUSE. Certain pdfs display correctly but other pdfs displayed with Firefox (either locally or online) are displayed badly: spaces are replaced with a lower half block character, fonts not sharp. I installed Firefox from the openSUSE repos (not from flathub) and opened the same pdf and it displayed correctly. I downloaded the pdf and opened it using Okular and no problems. I also opened the “troublesome” pdfs on Firefox in Windows and it displays correctly. I conclude that the flatpak version of Firefox is causing some pdfs to display incorrectly but I don’t know why.
I installed flatseal to tweak the flatpak Firefox’s settings but nothing seemed to fix the pdf display issue. Please see screenshot below of how Firefox (from openSUSE repos, on the left hand side) and Firefox (from flathub, on the right hand side) display the same pdf from the internet. The online pdf in the screenshot and used as an example of the issue can be found at:
https://www.jrf.org.uk/sites/default/files/jrf/files-research/international_cities_rotterdam.pdf
Not sure why some pdfs display correctly in Firefox from flathub and others display incorrectly. I’d prefer to use flatpak’s sandboxed Firefox if possible. Is there anyone else with the same problem or someone who who found a solution to this issue?
Thanks
Dad4Linux
how to get my hotmail?
It even happened while I was playing MMOs, making it crash. I am using Zone Alarm Antivirus + Firewall, which does not find any malware on my computer. I NEVER use MSN n… (read more)
It even happened while I was playing MMOs, making it crash.
I am using Zone Alarm Antivirus + Firewall, which does not find any malware on my computer. I NEVER use MSN news, so for the time being I placed the site on block list.
I am very concerned with FF (up to date) launching on its own, regardless which site it opens; that could be a breach of security in FF code itself.
The remote Windows host contains a web browser that is affected by multiple vulnerabilities. Description The installed version of Firefox is affected by various security… (read more)
The remote Windows host contains a web browser that is affected by multiple vulnerabilities. Description
The installed version of Firefox is affected by various security issues, some of which could lead to execution of arbitrary code on the affected host subject to the user's privileges.
Solution Upgrade to Mozilla 1.7.1 / Firefox 0.9.2 or later Upgrade to Mozilla 1.7.3 or later. Upgrade to Firefox 1.5.0.9 / 2.0.0.1 or later. Upgrade to Firefox 1.5.0.11 / 2.0.0.3 or later Upgrade to Firefox 1.5.0.10 / 2.0.0.2 or later Upgrade to Firefox 1.5.0.12 / 2.0.0.4 or later
Where are the patches/updates for this vulnerability located on the Mozilla homepage?