Using Thunderbird 115.13.0 Not able to send emails. Can receive.

Using Thunderbird 115.13.0 Not able to send emails. Can receive. I am in Canada. Get incoming email from Mail System (NOT MY ISP) Login from Country: US United States P… (read more)

Using Thunderbird 115.13.0 Not able to send emails. Can receive. I am in Canada. Get incoming email from Mail System (NOT MY ISP)

Login from Country: US United States
Please use this url to enable SMTP sending for the new ip address

If you were not sending from this address then change your password IMMEDIATELY as it is known to a hacker g_safe_smtp: Login attempt from unknown address (23.227.149.3) user=wsilvera@uniserve.com. Open this link in your browser to enable logins: http://mx0.uniserve.com/vfy?f=87c21422

My ISP says this is a Thunderbird issue, and they cannot help. Warren

Asked by wsilvera 3 hours ago

"This Page isn't Redirecting Properly" Error

I have attached several screen shots to describe the problem I have been experiencing with FireFox and E-trade (only). The problem started 2 days ago. Window 11 - curre… (read more)

I have attached several screen shots to describe the problem I have been experiencing with FireFox and E-trade (only). The problem started 2 days ago.

Window 11 - current Firefox - current 128.0.3 (64-bit)

The screen error that I am getting for the last two days is shown in attch #1

Looking at attch #2, the error occurs when I select any of the optional links starting with "Chart" and all other links that follow; the 1st two links are:

"Charts" link is https://us.etrade.com/e/t/invest/wsoddirect?wsod_page=/v1/stocks/charts/charts.asp?symbol=MS "News" link is https://us.etrade.com/e/t/invest/wsoddirect?wsod_page=/v1/stocks/news/search_results.asp?symbol=MS

All other equity stock main screens have the same problem.

Googling the error presented these suggestions (but nothing fixed the problem>) In Firefox Settings I have - cleared Cookies with "All Data" - HTTPS-only Mode is"disabled"; - "Enable DNS over HTTPS" is default Protection

Not sure what else to try. No problems occur with Chrome.

Suggestions? Bob

Asked by LVTguy 3 hours ago

Update to beta prompt

Fx 124.0 Why am I getting these notifications? I have the latest version, but this prompt not only asks me to update, but there's no mention that it will install the bet… (read more)

Fx 124.0

Why am I getting these notifications? I have the latest version, but this prompt not only asks me to update, but there's no mention that it will install the beta 125.0 beta 1

Asked by noel_envode 4 months ago

Last reply by noel_envode 4 hours ago

Here's working C# source code to open and arrange 3 Firefox browsers on a 4K monitor wtih Windows

modify to suit your tastes or improve it? working now without any known issues. using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; name… (read more)

modify to suit your tastes or improve it? working now without any known issues.

using System.Diagnostics; using System.Runtime.InteropServices; using System.Text;

namespace FirefoxWindowPositioner {

   class Program {
       [DllImport("user32.dll", SetLastError = true)]
       private static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
       [DllImport("user32.dll")]
       [return: MarshalAs(UnmanagedType.Bool)]
       private static extern bool IsWindowVisible(IntPtr hWnd);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);
       private const uint GW_OWNER = 4;
       private const int MaxRetries = 100;
       private const int SleepTime = 200;
       private const string ClassNameToFind = "MozillaWindowClass";
       private delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
       private static IntPtr foundWindowHandle = IntPtr.Zero;
       private static bool EnumWindowsCallback(IntPtr hWnd, IntPtr lParam) {
           uint processId;
           GetWindowThreadProcessId(hWnd, out processId);
           if (IsWindowVisible(hWnd) && GetWindow(hWnd, GW_OWNER) == IntPtr.Zero) {
               StringBuilder className = new StringBuilder(256);
               GetClassName(hWnd, className, className.Capacity);
               if (className.ToString() == ClassNameToFind) {
                   foundWindowHandle = hWnd;
                   Console.WriteLine($"Found window handle {hWnd} for process ID {processId}");
                   return false; // Stop enumerating windows once the desired window is found
               }
           }
           return true; // Continue enumerating windows
       }
       static void Main(string[] args) {
           string path = @"C:\Program Files\Mozilla Firefox\firefox.exe";
           // Define positions and sizes
           int[,] positions = new int[,]
           {
               {0, 0, 1284, 2120},
               {1280, 0, 1284, 2120},
               {2560, 0, 1284, 2120}
           };
           int initialDelay = 750; // Initial delay in milliseconds, 1000 worked
           int retryDelay = 200; // Delay between retries in milliseconds
           // Start three Firefox processes sequentially and move them to specified positions
           for (int i = 0; i < 3; i++) {
               Process firefoxProcess = Process.Start(path);
               Thread.Sleep(initialDelay); // Wait for the process to initialize
               foundWindowHandle = IntPtr.Zero;
               int retries = 0;
               while (foundWindowHandle == IntPtr.Zero && retries < MaxRetries) {
                   EnumWindows(EnumWindowsCallback, IntPtr.Zero);
                   if (foundWindowHandle == IntPtr.Zero) {
                       Thread.Sleep(retryDelay); // Wait before retrying
                       retries++;
                   }
               }
               if (foundWindowHandle != IntPtr.Zero) {
                   bool success = MoveWindow(foundWindowHandle, positions[i, 0], positions[i, 1], positions[i, 2], positions[i, 3], true);
                   if (success) {
                       Console.WriteLine($"Moved window {i + 1} to X: {positions[i, 0]}, Y: {positions[i, 1]}, Width: {positions[i, 2]}, Height: {positions[i, 3]}");
                   } else {
                       Console.WriteLine($"Failed to move window {i + 1}");
                   }
               } else {
                   Console.WriteLine($"Failed to get handle for Firefox process {i + 1}");
               }
           }
       }
   }

}

Asked by FireFoxCustomWannabe 3 hours ago

Email List Design: Boxed vs. List

Hi, I recently setup a second computer and installed Thunderbird (Built 115.13.0 (64-bit)) again. I transferred all my preferences, but have this strange problem, that t… (read more)

Hi,

I recently setup a second computer and installed Thunderbird (Built 115.13.0 (64-bit)) again. I transferred all my preferences, but have this strange problem, that the appearance of the email list looks different. In the previously installed version it is a simple list with separators and in the new installed version every email is in a separate box. I included the screenshots as a reference.

I googled and searched the settings to align this, but unfortunately without success. Does anyone know how to change this?

Thank you!

Asked by Groot 9 hours ago

Last reply by Groot 3 hours ago

When I try to access one of several email accounts, Thunderbird goes to Not Responding

I have had 5 email accounts set up with Thunderbird for several years. Just recently Thunderbird freezes when I try to access that email account. If I click on that email… (read more)

I have had 5 email accounts set up with Thunderbird for several years. Just recently Thunderbird freezes when I try to access that email account. If I click on that email account a second time, I get a Not Responding error at the top of the screen.

I upgraded to 128.0.1esr, but no change.

Ideas?

Thanks, Tom

Asked by tom427 3 hours ago

Sync: failure

I was forced to do issues with my windows to reinstall, not having the ability to backup anymore due to the errors. So after reinstalling windows I install firefox, I lo… (read more)

I was forced to do issues with my windows to reinstall, not having the ability to backup anymore due to the errors.

So after reinstalling windows I install firefox, I log in and it doesn't sync. Searching for a solution I found one that stated, if you have a backup of your files restore those into the new firefox profile. I do that and it shows a syncing animation shortly. Nothing happens though.

I start searching for other solutions, there they state just make a new profile via about:profiles and log in. I do so and it works, it starts syncing, but the problem now is it synced what synced in that other profile. So that other profile never really synced as in it did not grab from the cloud but rather it only upped and with that I guess overwrote everything what I had there? None of my later bookmarks are there, I only have what I had as a physical backup now. Why does sync work so? Not my first fight with sync, but I never lost data like this.

Kinda wish the sync interface was user-friendlier, where I can see what is overwritten or at least that I can choose to upload or download from sync when I log in. Instead of it choosing for me to just upload...

Asked by FROG 3 hours ago

outgoing server smtp.gmail.com will not recognise my password for gmail

We have been asked to change server settings to OAuth2 on Thunderbird. I thought I had followed instructions properly from the internet but emails will arrive now but I c… (read more)

We have been asked to change server settings to OAuth2 on Thunderbird. I thought I had followed instructions properly from the internet but emails will arrive now but I cannot send any. I keep getting a box asking for my password which then isn't recognised. Should I be going into my gmail account via Gmail itself rather than Thunderbird. We have 2 Gmail accounts and 2 outlook accounts coming into Thunderbird I am not a wizz kid at all this and only understand simple instructions. I am wishing I hadn't altered anything now!

Asked by Tudie 8 hours ago

Last reply by Tudie 3 hours ago

Recovering bookmarks from a crashed internal drive windows 7 into a new drive

My windows 7 hard drive crashed and I was able to recover most of the data but I am not able to find my old bookmarks from the old crashed drive into the new working driv… (read more)

My windows 7 hard drive crashed and I was able to recover most of the data but I am not able to find my old bookmarks from the old crashed drive into the new working drive. I currently have the crashed drive as a slave drive and can access folders but how do I transfer the old bookmarks to the newly installed hard drive?

Asked by frank951s 4 hours ago

Sending emails with thunderbird

Hi, since yesterday trying to send emails just results in the display box "Sending message" (in German) but it never completes that. Receiving emails works fine. The SMTP… (read more)

Hi, since yesterday trying to send emails just results in the display box "Sending message" (in German) but it never completes that. Receiving emails works fine. The SMTP entries all appear ok, I have not changed anything in terms of hard- or software. I use windows 10 and thunderbird 115. Sending email via the online interface of the service provider works fine too. This problem appears only when trying to send emails via strato.de but not with gmx.de. As far as I can see the settings are identical. Any ideas? Best regards

Asked by mz12 10 hours ago

Last reply by mz12 4 hours ago

Password Manager Not Syncing Correctly Between Desktop App and Mobile App

hey team Mozilla, i'm having a bit of an issue with Password Manager not syncing between my android mobile device and my desktop device. on desktop, i went through hund… (read more)

hey team Mozilla,

i'm having a bit of an issue with Password Manager not syncing between my android mobile device and my desktop device.

on desktop, i went through hundreds of accounts. i deleted accounts. i updated password. and i changed emails associated with those accounts (this was in response to recent data breaches that led to my identity being co-opted by fraudsters).

however, none of those updates are carrying over to my Firefox android app.

to trouble shoot, i tried clearing the mobile cache, clearing the mobile data, uninstalling the mobile app, syncing my desktop app, waiting for 8 hours, syncing the desktop app again, reinstalling the mobile app, logging back in.... but for some reason, the mobile app continues to remember all of my old and out-of-date passwords.

do you have any advice?

Asked by Zed 1 day ago

How to add new options to the taskbar context menu?

Currently the taskbar icon only offers a few tasks in the context menu, such as open new tab, new window or private new window. I understand that accessing about:config… (read more)

Currently the taskbar icon only offers a few tasks in the context menu, such as open new tab, new window or private new window.

I understand that accessing about:config would allow me some other options, such as recently visited pages. And also allows me to remove those tasks.

I want to add the option to select which profile I open from that menu, instead of opening the default one, then selecting the correct profile in about:profiles that, in turn opens yet another window.

I tried adding a value "browser.taskbar.lists.profiles.enable" and several variations of that command. None worked.

Is there a way to add that option, so when I right-click the icon in the taskbar I can directly select the profile I want to launch?

Asked by luizobe 11 hours ago

Last reply by luizobe 4 hours ago

PasswordBoss

It has been four weeks now that you have disabled PasswordBoss I have been using firefox for about 15 years now. I under stand that PasswordBoss has sent you the informat… (read more)

It has been four weeks now that you have disabled PasswordBoss I have been using firefox for about 15 years now. I under stand that PasswordBoss has sent you the information you requested and you have done nothing for three weeks now please fix this or i will uninstall Firefox and never use it again. I am sure you really don't care but i have quite a few clients that use Firefox and PassordBoss as well i will also recommend removal of firefox as well This is ridicules that is is taking this long.

Asked by rstevens2024 4 hours ago

Usernames and Passwords

My firefox recently stopped auto populating my usernames and passwords. I have double and triple checked all my settings. I have updated to latest release of Firefox. I h… (read more)

My firefox recently stopped auto populating my usernames and passwords. I have double and triple checked all my settings. I have updated to latest release of Firefox. I have rebooted my computer. Please help

Asked by angieroyal 5 hours ago

How to delete calendar item reminders for events that no longer exist

I have several calendar items that I deleted on my phone which removed them from Google calendar but the reminders continue to appear in the desktop app. I restored the … (read more)

I have several calendar items that I deleted on my phone which removed them from Google calendar but the reminders continue to appear in the desktop app.

I restored the items, modified them, deleted them from the calendar that appears in TB but no luck.

The notices lock the app - I can't do anything unless I cancel them.

Any suggestions?

Thanks!

Asked by Daniel Mannisto 5 hours ago

Autocomplete disabled at Chase.com

Recently, Chase seems to have disabled autocomplete on their login pages (www.chase.com and secure.chase.com). Saved usernames and passwords no longer auto-populate. Ye… (read more)

Recently, Chase seems to have disabled autocomplete on their login pages (www.chase.com and secure.chase.com). Saved usernames and passwords no longer auto-populate. Yet, Chrome and Edge have been unaffected. Can anyone at Mozilla address this?

Asked by TIKD 6 hours ago