Provision of Junk Adaptive Filter

Hello, I would like to provide other users with the Thunderbird junk adaptive filter that I have developed to a certain level, but which file in the Thunderbird folder do… (kàsi)

Hello, I would like to provide other users with the Thunderbird junk adaptive filter that I have developed to a certain level, but which file in the Thunderbird folder do I give them to do this?

Thanks for reading.

Asked by Hisayuki.Fukuda 1 wákàtí sẹ́hìn

Firefox not rotating camera when laptop is in tent mode

Hi, I am disabled and in a wheelchair. I have a Dell Inspiron 7591 2-in-1 laptop as a communication device to speak. Since my hands don't work, I have to use head switc… (kàsi)

Hi,

I am disabled and in a wheelchair. I have a Dell Inspiron 7591 2-in-1 laptop as a communication device to speak. Since my hands don't work, I have to use head switches in order to operate my device. I downloaded and installed the latest version Firefox (version 132.0.2 (64-bit)) via Microsoft Store on my laptop running Windows 10 Home. I have a Jabber/XMPP account to communicate with my family members and friends. In order to mount my laptop to my wheelchair, my laptop has to be in tent mode (upside down, but my screen automatically rotates to the proper orientation.) When I go to mov.im in the Firefox browser and video call someone, I appear upside-down on their end. I also visited https://webcamtests.com/ in Firefox and I appeared upside-down on my screen. However when I use other programs (eg: the camera app in Windows, Google Chrome, etc.), it recognizes my laptop is in tent mode so those programs automatically adjust my camera orientation. I would like my Firefox browser to recognize that my laptop is in tent mode and automatically rotate my camera to the proper orientation. Is this possible? If not, I would like to make this a feature request please?

Thank you

Asked by speedygonzales99 1 ọ̀sẹ̀ tó kọjá

Last reply by speedygonzales99 1 wákàtí sẹ́hìn

Bookmarks question default folder

Hello, After force closing Firefox app when I tap on the bookmarks under settings it always defaults to "Desktop Bookmarks". Is there a way to make it go to "Bookmarks T… (kàsi)

Hello,

After force closing Firefox app when I tap on the bookmarks under settings it always defaults to "Desktop Bookmarks". Is there a way to make it go to "Bookmarks Toolbar" folder content by default?

Thanks, Dejan

Asked by Dejan B. 4 àwọn wákàtí sẹ́hìn

Canadian English has Missing Definitions

I was excited to see that Firefox had support for Canadian English, however the dictionary seems to be missing numerous words and I get spelling errors for words like "la… (kàsi)

I was excited to see that Firefox had support for Canadian English, however the dictionary seems to be missing numerous words and I get spelling errors for words like "lasagna."

Is this a bug or is the dictionary just barely populated with words and missing a tremendous amount?

Asked by Gerrit Kat 4 àwọn ọjọ́ tó kọjá

Last reply by Gerrit Kat 6 àwọn wákàtí sẹ́hìn

Tabs on bottom

Well looks like they did it to us again. My tabs are back on top again and need to put them below where I am a lot of other users like our tabs! Below is my current c… (kàsi)

Well looks like they did it to us again. My tabs are back on top again and need to put them below where I am a lot of other users like our tabs!

Below is my current coding if anyone knows how to adjust it to force the tabs to the bottom again would be much appreciated!!

Current version I am running of FF is 133.0

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* IMPORTANT Get window_control_placeholder_support.css Window controls will be all wrong without it. Additionally on Linux, you may need to get: linux_gtk_window_control_patch.css Use tabs_on_bottom_menubar_on_top_patch.css if you have menubar permanently enabled and want it on top

  • /
  1. toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
  2. TabsToolbar > .titlebar-buttonbox-container{
 position: fixed;
 display: block;
 top: 0px;
 right:0;
 height: 40px;

} @media (-moz-gtk-csd-reversed-placement),

      (-moz-platform: macos){
 .titlebar-buttonbox-container{ left:0; right: unset !important; }

} @supports -moz-bool-pref("userchrome.force-window-controls-on-left.enabled"){

 .titlebar-buttonbox-container{ left:0; right: unset !important; }

}

root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 32px }
  1. toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

  1. titlebar{
 -moz-box-ordinal-group: 2; /* Fx <112 compatibility */
 order: 2;
 -moz-appearance: none !important;
 --tabs-navbar-shadow-size: 0px;
 --uc-menubar-vertical-overlap: 19px; /* for hide_tabs_with_one_tab_w_window_controls.css compatibility */

} /* Re-order window and tab notification boxes */

  1. navigator-toolbox > div{ display: contents }

.global-notificationbox,

  1. tab-notification-deck{
 -moz-box-ordinal-group: 2; /* Fx <112 compatibility */
 order: 2;

}

  1. TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

  1. navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){

 .titlebar-button{
   -moz-box-orient: vertical; /* Fx <112 compatibility */
   flex-direction: column;
 }

}

/* At Activated Menubar */

root:not([chromehidden~="menubar"], [sizemode="fullscreen"]) #toolbar-menubar:not([autohide="true"]) + #TabsToolbar > .titlebar-buttonbox-container {
 display: block !important;

}

  1. toolbar-menubar:not([autohide="true"]) > .titlebar-buttonbox-container {
 visibility: hidden;

}

/* These exist only for compatibility with autohide-tabstoolbar.css */ toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

  1. navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }
  2. TabsToolbar > .titlebar-buttonbox-container{ visibility: visible }
  3. navigator-toolbox:not(:-moz-lwtheme){ background-color: -moz-dialog }

/* Uncomment the following if you want bookmarks toolbar to be below tabs */ /*

  1. PersonalToolbar{
 -moz-box-ordinal-group: 2;
 order: 2;

}

  • /



/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */ /* Only really useful if menubar is ALWAYS visible */

root:not([sizemode="fullscreen"]){ --uc-window-control-width: 0px !important }
root{
  /* height if native titlebar is enabled, assumes empty menubar */
 --uc-menubar-height: 20px;

}

root[tabsintitlebar]{
 /* height when native titlebar is disabled, more roomy so can fit buttons etc. */
 --uc-menubar-height: 29px;

}

root:is([sizemode="fullscreen"],[chromehidden~="menubar"]){
 --uc-menubar-height: 0px;

} /* Since menubar is statically at top, remove fake drag-space that might be set by window_control_placeholder_support.css */

root:not([sizemode="fullscreen"]) #nav-bar{ border-inline-width: 0 }
  1. navigator-toolbox{
 -moz-window-dragging: drag;
 padding-top: var(--uc-menubar-height) !important;

}

/* Remove window dragging from notification boxes */

  1. tab-notification-deck,

.global-notificationbox{

 -moz-window-dragging: no-drag;

}

  1. toolbar-menubar{
 position: fixed;
 display: flex;
 top: 0px;
 height: var(--uc-menubar-height);
 width: 100%;
 overflow: hidden;

}

  1. toolbar-menubar > .titlebar-buttonbox-container{ height: 100%; order: 100; }
  1. toolbar-menubar > [flex]{ flex-grow: 100; }
  2. toolbar-menubar > spacer[flex]{
 order: 99;
 flex-grow: 1;
 min-width: var(--uc-window-drag-space-post,20px);

}

  1. toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }
root:not([sizemode="fullscreen"]) #toolbar-menubar.browser-toolbar > .titlebar-buttonbox-container{
 visibility: visible;

}

root:not([chromehidden~="menubar"], [sizemode="fullscreen"]) #TabsToolbar#TabsToolbar#TabsToolbar > .titlebar-buttonbox-container {
 display: none !important;

}

Asked by scottish2 7 àwọn wákàtí sẹ́hìn

Errors setting up an email account

I am trying to setup an email account through Spectrum. My user name and password are correct, so I think the problem is in the server settings. Thunderbird has the setti… (kàsi)

I am trying to setup an email account through Spectrum. My user name and password are correct, so I think the problem is in the server settings. Thunderbird has the settings as "mobile.charter.net". I have checked with Spectrum and this is correct. But Thunderbird says that something is still incorrect. Any advice on what I should do?

Asked by Norm Hoffman 7 àwọn wákàtí sẹ́hìn

Search bar taking up entire screen

My search bar is taking up the entire screen when I try to interact with it. When I go to search stuff, then it returns to the normal style. Then, when I try to interact … (kàsi)

My search bar is taking up the entire screen when I try to interact with it. When I go to search stuff, then it returns to the normal style. Then, when I try to interact with the page I'm on, it absorbs the screen.

Asked by Eddie Lampert 8 àwọn wákàtí sẹ́hìn

How to configure automatic "Desktop View" for a list of website?

Hello, "desktop view" is very useful, and I use it for LinkedIn because the "mobile mode" is shitty (I guess to make/force people to install the proprietary and closed s… (kàsi)

Hello, "desktop view" is very useful, and I use it for LinkedIn because the "mobile mode" is shitty (I guess to make/force people to install the proprietary and closed source LinkedIn app).

I found that "desktop view" is stopping working while activated, when you always keep a tab opened for days... I have to close the tab and open a new one to make "desktop view" working again.

I found too that "open in a new tab" action is not inheriting the view mode of the parent tab and that an issue when browsing the same website.

Could it be possible to have "desktop view" enable by default based on visited website?

Asked by defdefred 1 ọjọ́ tó kọjá

Clear cache pop-up?

Why do I keep getting pop-ups that 500% zoom in on the page with a message asking for me to clear cache? I have cleared my cache multiple times and restarted my computer … (kàsi)

Why do I keep getting pop-ups that 500% zoom in on the page with a message asking for me to clear cache? I have cleared my cache multiple times and restarted my computer many times as well, but it is still been a recurring problem for the past few days. It has been happening on every web page I visit, and even when there is no data to be cleared. Any information on how to fix this problem would be greatly appreciated, thank you.

Asked by Ryan O'Connor 11 àwọn wákàtí sẹ́hìn

Last reply by Ryan O'Connor 10 àwọn wákàtí sẹ́hìn

Word suggestions text input

Hi, I want to know how to stop word prediction in text input boxes. I can't see the word I am typing with it in the way. I do my own spell checking and seeing the word I'… (kàsi)

Hi, I want to know how to stop word prediction in text input boxes. I can't see the word I am typing with it in the way. I do my own spell checking and seeing the word I'm typing is required. I don't use any word prediction suggestions anyway. I am not so lazy or incompetent that I don't actually use my keyboard for typing and I absolutely have to see what I'm typing as I am doing so. I've looked all through the settings in Firefox settings and did a search to see if it was something Windows related and also did a search here which only came up with 1 result which was unrelated. Thanks for any help on this.

Asked by Ray Dunne 13 àwọn wákàtí sẹ́hìn

Did the letterboxing dimensions change with FF 133.0?

It certainly appears they have, with the left and right padding growing wider. In fact, they both look about twice the size of the top and bottom padding, whereas before… (kàsi)

It certainly appears they have, with the left and right padding growing wider. In fact, they both look about twice the size of the top and bottom padding, whereas before I remember them as being about equal. The change was immediately apparent with my home page!

Any particular reason for this?

Asked by E.C. Marm 13 àwọn wákàtí sẹ́hìn

Last reply by E.C. Marm 13 àwọn wákàtí sẹ́hìn

Profile picture is small

The profile picture is a bit small. There is space around the picture in the button. It's a bit weird. How can I make it for fit?

Asked by nauq302 13 àwọn wákàtí sẹ́hìn

How to disable Firefox Review Checker?

I have read elsewhere here in the Support Forum that "browser.shopping.experience2023 prefs" in about:config allow for the disabling of Firefox Review Checker. Alas, the… (kàsi)

I have read elsewhere here in the Support Forum that "browser.shopping.experience2023 prefs" in about:config allow for the disabling of Firefox Review Checker. Alas, there are quite a few of them there! What specific preferences -- and what specific values thereof -- are required to disable the Review Checker in FF 133.0?

I will add that it would be terrific if one could accomplish the same goal via FF Settings.

Asked by E.C. Marm 14 àwọn wákàtí sẹ́hìn

Ad blocking and search engine problems.

For the past week or so I am finding Youtube videos are unavailable because, I understand from messages that flash on my screen, its ads are being blocked. This does no… (kàsi)

For the past week or so I am finding Youtube videos are unavailable because, I understand from messages that flash on my screen, its ads are being blocked. This does not occur if I use Chrome. Also, although I had chosen Duck Duck Go as my search engine, Yahoo seems to be doing the job. Can you please advise me how I can stop ad blocking for Youtube, and yahoo appearing as the search engine, when I use Firefox. Firefox was my default browser but have changed to Chrome for the present. The O/S on my PC is Windows 10.

Asked by grtate 15 àwọn wákàtí sẹ́hìn

I'd like to make my own "global default column view"

Would be nice to have a kind of "my own default setup of columns" function. In a topfolder, say Inbox I have arranged the columns I'd like to be present all over all sub… (kàsi)

Would be nice to have a kind of "my own default setup of columns" function. In a topfolder, say Inbox I have arranged the columns I'd like to be present all over all subfolders. But Thunderbird apparantly does not work that way. Making a new subfolder somwhere I have to copy the layout from one folder that I prefer as my own general default layout and use the right click function "Apply columns to ..." .... every time making a new folder. That's a bit tiresome. It ought to be possible to have a function "Update default column layout" to my own liking. If it's already there please advice as reading forums and searching online does not give me an answer to this. Cheers

Asked by Bjarne 21 àwọn wákàtí sẹ́hìn

Can't delete files and keep messages

Hello, I downloaded Thunderbird in order to clean up storage on gmail account. Mainly, I wanted to delete files but keep the messages, a feature I thought Thunderbird pro… (kàsi)

Hello, I downloaded Thunderbird in order to clean up storage on gmail account. Mainly, I wanted to delete files but keep the messages, a feature I thought Thunderbird provides. I deleted the files but they still appear on my gmail account and space size hasn't changed. I double checked the settings on both Thunderbird and gmail, as well as read and followed posts here, but it still doesn't work. I'm wondering whether I'm missing something... Any idea?

Asked by raphaella.s 21 àwọn wákàtí sẹ́hìn

device input/output

why is there no way to select audio/video/ microphone input or output? . my headset dies all the time and i would like to change in firefox which output the audio should … (kàsi)

why is there no way to select audio/video/ microphone input or output? . my headset dies all the time and i would like to change in firefox which output the audio should go into. while skullcandys headphones firmware sucks, firefox has the wherewithal to have a device settings section where i can choose which device has which input and output

Asked by Paige Scottie 1 ọjọ́ tó kọjá

security - cannot send because labeled spam

The spam people say to "limit outbound port 25 to mail servers". I have a profile listed on the webpage called "Outgoing Server SMTP Settings" from long ago .... This i… (kàsi)

The spam people say to "limit outbound port 25 to mail servers". I have a profile listed on the webpage called "Outgoing Server SMTP Settings" from long ago .... This is the one (I have a few profiles) that is designed (Default)

Server: shawmail.vc.shawcable.net Port: 25 (default 587) Connection security - none

All my other profiles use: Server: smtp.shaw.ca Port: 587 (default 587) Security: STARTTLS

Q: Might this be the problem? Can I simply delete this profile - even if it is the designed 'Default'.

Asked by joanreekie 1 ọjọ́ tó kọjá

Last reply by joanreekie 1 ọjọ́ tó kọjá