TîMöTH¥ Ç. Hª££ ITSS III James H. Blake High School Room C231J 300 Norwood Road Silver Spring, Maryland 20905 Office Phone: 301.879.1348
-----Original Message----- From: Enterprise [mailto:[email protected]] On Behalf Of [email protected] Sent: Friday, January 22, 2016 7:00 AM To: [email protected] Subject: Enterprise Digest, Vol 55, Issue 10 To unsubscribe via the web interface, visit https://mail.mozilla.org/listinfo/enterprise or, via email, send a message with a subject or body of 'unsubscribe' to [email protected] Send Enterprise mailing list submissions to [email protected] You can reach the person managing the list at [email protected] When replying, please edit your Subject line so it is more specific than "Re: Contents of Enterprise digest..." Today's Topics: 1. Re: Auto-enable extensions Mozilla Firefox 42.0 (Kaply Consulting) 2. Re: Auto-enable extensions Mozilla Firefox 42.0 (Christoffer de la Motte) 3. Re: Auto-enable extensions Mozilla Firefox 42.0 (Manuel Sp?ni VELOCIPED) 4. Re: Auto-enable extensions Mozilla Firefox 42.0 (Kaply Consulting) 5. Firefox ESR 38.5.2 - How to block about:permissons and other about pages (Alexander Heim) 6. Re: Firefox ESR 38.5.2 - How to block about:permissons and other about pages (Christian Rottler) ---------------------------------------------------------------------- Message: 1 Date: Thu, 21 Jan 2016 07:47:22 -0600 From: Kaply Consulting <[email protected]> To: [email protected] Subject: Re: [Mozilla Enterprise] Auto-enable extensions Mozilla Firefox 42.0 Message-ID: <[email protected]> Content-Type: text/plain; charset="windows-1252"; Format="flowed" See: https://mike.kaply.com/2012/02/21/understanding-add-on-scopes/ You shouldn't be touching enabledScopes. Mike On 1/21/16 5:14 AM, Christoffer de la Motte wrote: > Hi, im deploying Firefox to a enterprise environment (think SCCM) with > an extension included. Ive solved everything except one thing: To > actually enable the extension automatically. > > *Im using a .js-file that points to mozilla.cfg:* > pref("general.config.filename", "mozilla.cfg"); > pref("general.config.obscure_value", 0); > > *Ive created mozilla.cfg and added prefs:* // Disable updater > lockPref("app.update.enabled", false); > > // make absolutely sure it is really off lockPref("app.update.auto", > false); lockPref("app.update.mode", 0); > lockPref("app.update.service.enabled", false); > > // Disable Add-ons compatibility checking > clearPref("extensions.lastAppVersion"); > > // Don't show 'know your rights' on first run > pref("browser.rights.3.shown", true); > > // Don't show WhatsNew on first run after every update > pref("browser.startup.homepage_override.mstone","ignore"); > > // Disable the internal PDF viewer > pref("pdfjs.disabled", true); > > // Disable the flash to javascript converter pref("shumway.disabled", > true); > > // Don't ask to install the Flash plugin > pref("plugins.notifyMissingFlash", false); > > //Disable plugin checking > lockPref("plugins.hide_infobar_for_outdated_plugin", true); > clearPref("plugins.update.url"); > > // Disable health reporter > lockPref("datareporting.healthreport.service.enabled", false); > > // Disable all data upload (Telemetry and FHR) > lockPref("datareporting.policy.dataSubmissionEnabled", false); > > // Disable crash reporter > lockPref("toolkit.crashreporter.enabled", false); > Components.classes["@mozilla.org/toolkit/crash-reporter;1 > <http://mozilla.org/toolkit/crash-reporter;1>"].getService(Components. > interfaces.nsICrashReporter).submitReports > = false; > > // Disabled Plugin Check > defaultPref("plugin.scan.plid.all",true); > defaultPref("plugins.update.url",""); > > *I got recommended two months back to use:* > > // Enable Extensions > defaultPref("extensions.autoDisableScopes", 2); > defaultPref("extensions.enabledScopes", 4); > > *Using those two lines removes the extension from Firefox.* > > Does anyone have a clue how to enable extensions automatically? Is > there a way? > > The extension that i want enabled is IBM Sametime WebPlayer 9.0.0.1529 > > > _______________________________________________ > Enterprise mailing list > [email protected] > https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] with a subject of "unsubscribe" -- Mike Kaply - Kaply Consulting in Austin, TX Sign up for my newsletter - http://mike.kaply.com/email/ http://mike.kaply.com | http://www.linkedin.com/in/mkaply -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://mail.mozilla.org/private/enterprise/attachments/20160121/3c616b60/attachment-0001.html> ------------------------------ Message: 2 Date: Thu, 21 Jan 2016 16:48:24 +0100 From: Christoffer de la Motte <[email protected]> To: Kaply Consulting <[email protected]> Cc: [email protected] Subject: Re: [Mozilla Enterprise] Auto-enable extensions Mozilla Firefox 42.0 Message-ID: <CA+KpNpOB9TZttomCsx2xQ0yV4c5ZWOLd-AOzD=Qz+24rxP==a...@mail.gmail.com> Content-Type: text/plain; charset="utf-8" Hi and thanks for the information. If I understand it correctly pref("extensions.autoDisableScopes", 15); means every extension is disabled, that would mean pref("extensions.autoDisableScopes", 0); should enable all the extensions. Combine that with pref("extensions.enableScopes", 15); and it should search everywhere for extensions AND enable it. I tried using both of these prefs, still the extension is disabled when I start firefox. Ive tried using only pref("extensions.autoDisableScopes", 15) and excluding enableScopes, still disabled. Am I misunderstanding something? On Thu, Jan 21, 2016 at 2:47 PM, Kaply Consulting <[email protected]> wrote: > See: > > https://mike.kaply.com/2012/02/21/understanding-add-on-scopes/ > > You shouldn't be touching enabledScopes. > > Mike > > > On 1/21/16 5:14 AM, Christoffer de la Motte wrote: > > Hi, im deploying Firefox to a enterprise environment (think SCCM) with > an extension included. Ive solved everything except one thing: To > actually enable the extension automatically. > > *Im using a .js-file that points to mozilla.cfg:* > pref("general.config.filename", "mozilla.cfg"); > pref("general.config.obscure_value", 0); > > *Ive created mozilla.cfg and added prefs:* // Disable updater > lockPref("app.update.enabled", false); > > // make absolutely sure it is really off lockPref("app.update.auto", > false); lockPref("app.update.mode", 0); > lockPref("app.update.service.enabled", false); > > // Disable Add-ons compatibility checking > clearPref("extensions.lastAppVersion"); > > // Don't show 'know your rights' on first run > pref("browser.rights.3.shown", true); > > // Don't show WhatsNew on first run after every update > pref("browser.startup.homepage_override.mstone","ignore"); > > // Disable the internal PDF viewer > pref("pdfjs.disabled", true); > > // Disable the flash to javascript converter pref("shumway.disabled", > true); > > // Don't ask to install the Flash plugin > pref("plugins.notifyMissingFlash", false); > > //Disable plugin checking > lockPref("plugins.hide_infobar_for_outdated_plugin", true); > clearPref("plugins.update.url"); > > // Disable health reporter > lockPref("datareporting.healthreport.service.enabled", false); > > // Disable all data upload (Telemetry and FHR) > lockPref("datareporting.policy.dataSubmissionEnabled", false); > > // Disable crash reporter > lockPref("toolkit.crashreporter.enabled", false); > Components.classes["@mozilla.org/toolkit/crash-reporter;1"].getService > (Components.interfaces.nsICrashReporter).submitReports > = false; > > // Disabled Plugin Check > defaultPref("plugin.scan.plid.all",true); > defaultPref("plugins.update.url",""); > > *I got recommended two months back to use:* > > // Enable Extensions > defaultPref("extensions.autoDisableScopes", 2); > defaultPref("extensions.enabledScopes", 4); > > *Using those two lines removes the extension from Firefox.* > > Does anyone have a clue how to enable extensions automatically? Is > there a way? > > The extension that i want enabled is IBM Sametime WebPlayer 9.0.0.1529 > > > _______________________________________________ > Enterprise mailing > [email protected]https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] with a subject of "unsubscribe" > > > > -- > Mike Kaply - Kaply Consulting in Austin, TX Sign up for my newsletter > - http://mike.kaply.com/email/http://mike.kaply.com | > http://www.linkedin.com/in/mkaply > > > _______________________________________________ > Enterprise mailing list > [email protected] > https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] with a subject of "unsubscribe" > -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://mail.mozilla.org/private/enterprise/attachments/20160121/214dbf11/attachment-0001.html> ------------------------------ Message: 3 Date: Thu, 21 Jan 2016 17:20:37 +0100 From: Manuel Sp?ni VELOCIPED <[email protected]> To: [email protected], Thomas Ende <[email protected]> Subject: Re: [Mozilla Enterprise] Auto-enable extensions Mozilla Firefox 42.0 Message-ID: <[email protected]> Content-Type: text/plain; charset=windows-1252 Hi, The two values have to be mutually exclusive. So, your values should add up to 15. Some examples: pref("extensions.autoDisableScopes", 0); pref("extensions.enabledScopes", 15); (All extensions, no matter how they were installed, are enabled) Or pref("extensions.autoDisableScopes", 3); pref("extensions.enabledScopes", 12); (Extensions installed by the user are disabled, but all system-wide extensions are enabled) On a fairly restricted Windows system, you would set pref("extensions.autoDisableScopes", 11); pref("extensions.enabledScopes", 4); Hope this helps! kind regards, Manuel On 21.01.2016 16:48, Christoffer de la Motte wrote: > Hi and thanks for the information. > > If I understand it correctly pref("extensions.autoDisableScopes", 15); > means every extension is disabled, that would mean > pref("extensions.autoDisableScopes", 0); should enable all the extensions. > > Combine that with pref("extensions.enableScopes", 15); and it should > search everywhere for extensions AND enable it. > > I tried using both of these prefs, still the extension is disabled > when I start firefox. > > Ive tried using only pref("extensions.autoDisableScopes", 15) and > excluding enableScopes, still disabled. > > Am I misunderstanding something? > > On Thu, Jan 21, 2016 at 2:47 PM, Kaply Consulting > <[email protected] <mailto:[email protected]>> wrote: > > See: > > https://mike.kaply.com/2012/02/21/understanding-add-on-scopes/ > > You shouldn't be touching enabledScopes. > > Mike > > > On 1/21/16 5:14 AM, Christoffer de la Motte wrote: >> Hi, im deploying Firefox to a enterprise environment (think SCCM) >> with an extension included. Ive solved everything except one >> thing: To actually enable the extension automatically. >> >> *Im using a .js-file that points to mozilla.cfg:* >> pref("general.config.filename", "mozilla.cfg"); >> pref("general.config.obscure_value", 0); >> >> *Ive created mozilla.cfg and added prefs:* >> // Disable updater >> lockPref("app.update.enabled", false); >> >> // make absolutely sure it is really off >> lockPref("app.update.auto", false); >> lockPref("app.update.mode", 0); >> lockPref("app.update.service.enabled", false); >> >> // Disable Add-ons compatibility checking >> clearPref("extensions.lastAppVersion"); >> >> // Don't show 'know your rights' on first run >> pref("browser.rights.3.shown", true); >> >> // Don't show WhatsNew on first run after every update >> pref("browser.startup.homepage_override.mstone","ignore"); >> >> // Disable the internal PDF viewer >> pref("pdfjs.disabled", true); >> >> // Disable the flash to javascript converter >> pref("shumway.disabled", true); >> >> // Don't ask to install the Flash plugin >> pref("plugins.notifyMissingFlash", false); >> >> //Disable plugin checking >> lockPref("plugins.hide_infobar_for_outdated_plugin", true); >> clearPref("plugins.update.url"); >> >> // Disable health reporter >> lockPref("datareporting.healthreport.service.enabled", false); >> >> // Disable all data upload (Telemetry and FHR) >> lockPref("datareporting.policy.dataSubmissionEnabled", false); >> >> // Disable crash reporter >> lockPref("toolkit.crashreporter.enabled", false); >> Components.classes["@mozilla.org/toolkit/crash-reporter;1 >> >> <http://mozilla.org/toolkit/crash-reporter;1>"].getService(Components.interfaces.nsICrashReporter).submitReports >> = false; >> >> // Disabled Plugin Check >> defaultPref("plugin.scan.plid.all",true); >> defaultPref("plugins.update.url",""); >> >> *I got recommended two months back to use:* >> >> // Enable Extensions >> defaultPref("extensions.autoDisableScopes", 2); >> defaultPref("extensions.enabledScopes", 4); >> >> *Using those two lines removes the extension from Firefox.* >> >> Does anyone have a clue how to enable extensions automatically? Is >> there a way? >> >> The extension that i want enabled is IBM Sametime WebPlayer >> 9.0.0.1529 >> >> >> _______________________________________________ >> Enterprise mailing list >> [email protected] <mailto:[email protected]> >> https://mail.mozilla.org/listinfo/enterprise >> >> To unsubscribe from this list, please visit >> https://mail.mozilla.org/listinfo/enterprise or send an email to >> [email protected] <mailto:[email protected]> with >> a subject of "unsubscribe" > > > -- > Mike Kaply - Kaply Consulting in Austin, TX > Sign up for my newsletter - http://mike.kaply.com/email/ > http://mike.kaply.com | http://www.linkedin.com/in/mkaply > > > _______________________________________________ > Enterprise mailing list > [email protected] <mailto:[email protected]> > https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] > <mailto:[email protected]> with a subject of "unsubscribe" > > > > > _______________________________________________ > Enterprise mailing list > [email protected] > https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] with a subject of "unsubscribe" > -- [email protected] Ich bin am am Dienstag, am Donnerstag und am Freitag im Velociped erreichbar. Velociped CH-6010 Kriens www.velociped.ch Laden, Velos, Zubeh?r: Luzernerstrasse 4, Tel. 041 329 10 50 Werkstatt, Ersatzteile, Caf?: Luzernerstrasse 16, Tel. 041 329 10 40 unsere ?ffnungszeiten: Dienstag bis Freitag: 9 bis 12 und 13.30 bis 18.30 Samstag: 9 bis 16 durchgehend Montag geschlossen ------------------------------ Message: 4 Date: Thu, 21 Jan 2016 10:53:50 -0600 From: Kaply Consulting <[email protected]> To: Christoffer de la Motte <[email protected]> Cc: [email protected] Subject: Re: [Mozilla Enterprise] Auto-enable extensions Mozilla Firefox 42.0 Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8"; Format="flowed" On 1/21/16 9:48 AM, Christoffer de la Motte wrote: > Hi and thanks for the information. > > If I understand it correctly pref("extensions.autoDisableScopes", 15); > means every extension is disabled, that would mean > pref("extensions.autoDisableScopes", 0); should enable all the extensions. > Combine that with pref("extensions.enableScopes", 15); and it should > search everywhere for extensions AND enable it. > I tried using both of these prefs, still the extension is disabled > when I start firefox. > Ive tried using only pref("extensions.autoDisableScopes", 15) and > excluding enableScopes, still disabled. > Am I misunderstanding something? You shouldn't worry about enable scopes at all. The defaults are fine. The only issue is autoDisableScopes. And you should set it to 0: |pref("extensions.autoDisableScopes", 0);| In what file are you putting the pref? Mike > > On Thu, Jan 21, 2016 at 2:47 PM, Kaply Consulting > <[email protected] <mailto:[email protected]>> wrote: > > See: > > https://mike.kaply.com/2012/02/21/understanding-add-on-scopes/ > > You shouldn't be touching enabledScopes. > > Mike > > > On 1/21/16 5:14 AM, Christoffer de la Motte wrote: >> Hi, im deploying Firefox to a enterprise environment (think SCCM) >> with an extension included. Ive solved everything except one >> thing: To actually enable the extension automatically. >> >> *Im using a .js-file that points to mozilla.cfg:* >> pref("general.config.filename", "mozilla.cfg"); >> pref("general.config.obscure_value", 0); >> >> *Ive created mozilla.cfg and added prefs:* >> // Disable updater >> lockPref("app.update.enabled", false); >> >> // make absolutely sure it is really off >> lockPref("app.update.auto", false); >> lockPref("app.update.mode", 0); >> lockPref("app.update.service.enabled", false); >> >> // Disable Add-ons compatibility checking >> clearPref("extensions.lastAppVersion"); >> >> // Don't show 'know your rights' on first run >> pref("browser.rights.3.shown", true); >> >> // Don't show WhatsNew on first run after every update >> pref("browser.startup.homepage_override.mstone","ignore"); >> >> // Disable the internal PDF viewer >> pref("pdfjs.disabled", true); >> >> // Disable the flash to javascript converter >> pref("shumway.disabled", true); >> >> // Don't ask to install the Flash plugin >> pref("plugins.notifyMissingFlash", false); >> >> //Disable plugin checking >> lockPref("plugins.hide_infobar_for_outdated_plugin", true); >> clearPref("plugins.update.url"); >> >> // Disable health reporter >> lockPref("datareporting.healthreport.service.enabled", false); >> >> // Disable all data upload (Telemetry and FHR) >> lockPref("datareporting.policy.dataSubmissionEnabled", false); >> >> // Disable crash reporter >> lockPref("toolkit.crashreporter.enabled", false); >> Components.classes["@mozilla.org/toolkit/crash-reporter;1 >> >> <http://mozilla.org/toolkit/crash-reporter;1>"].getService(Components.interfaces.nsICrashReporter).submitReports >> = false; >> >> // Disabled Plugin Check >> defaultPref("plugin.scan.plid.all",true); >> defaultPref("plugins.update.url",""); >> >> *I got recommended two months back to use:* >> >> // Enable Extensions >> defaultPref("extensions.autoDisableScopes", 2); >> defaultPref("extensions.enabledScopes", 4); >> >> *Using those two lines removes the extension from Firefox.* >> >> Does anyone have a clue how to enable extensions automatically? >> Is there a way? >> >> The extension that i want enabled is IBM Sametime WebPlayer >> 9.0.0.1529 >> >> >> _______________________________________________ >> Enterprise mailing list >> [email protected] <mailto:[email protected]> >> https://mail.mozilla.org/listinfo/enterprise >> >> To unsubscribe from this list, please >> visithttps://mail.mozilla.org/listinfo/enterprise or send an email >> [email protected] >> <mailto:[email protected]> with a subject of "unsubscribe" > > > -- > Mike Kaply - Kaply Consulting in Austin, TX > Sign up for my newsletter -http://mike.kaply.com/email/ > http://mike.kaply.com |http://www.linkedin.com/in/mkaply > > > _______________________________________________ > Enterprise mailing list > [email protected] <mailto:[email protected]> > https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] > <mailto:[email protected]> with a subject of > "unsubscribe" > > -- Mike Kaply - Kaply Consulting in Austin, TX Sign up for my newsletter - http://mike.kaply.com/email/ http://mike.kaply.com | http://www.linkedin.com/in/mkaply -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://mail.mozilla.org/private/enterprise/attachments/20160121/97a06876/attachment-0001.html> ------------------------------ Message: 5 Date: Fri, 22 Jan 2016 08:16:29 +0100 From: Alexander Heim <[email protected]> To: [email protected] Subject: [Mozilla Enterprise] Firefox ESR 38.5.2 - How to block about:permissons and other about pages Message-ID: <[email protected]> Content-Type: text/plain; charset="utf-8" Hello everybody, we are currently in the process of building a Firefox V38.5.2 ESR software package to deploy in a customer environment. To customize the Firefox Settings we use different approaches, such as a config file with preferences, userchrome.css and the autoconfig tool (cck2). So most of the settings we would like to have implemented we already got working now but what we still need is the possibility to block the about sites within Firefox, especially the "about:permissions". In earlier Versions of Firefox (36.x) it was possible to configure this with the cck2 tool. As it seems with the latest Version of cck2 you can only configure "about:config" to be blocked but no other config pages. Is there another way to configure the "about:permissions" to be blocked as well? Thank you very much in advance for your help! Kind Regards, Alex -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://mail.mozilla.org/private/enterprise/attachments/20160122/bb572a4f/attachment-0001.html> ------------------------------ Message: 6 Date: Fri, 22 Jan 2016 11:23:46 +0100 From: Christian Rottler <[email protected]> To: Alexander Heim <[email protected]> Cc: [email protected] Subject: Re: [Mozilla Enterprise] Firefox ESR 38.5.2 - How to block about:permissons and other about pages Message-ID: <CAMo9=w19Tzp1M21h-ePixGZu=Ge6Myt_+G9KC8JQiQ0=gyv...@mail.gmail.com> Content-Type: text/plain; charset="utf-8" Hi Alex, sure. The way I've been doing it for quite some time now is as follows: a) Create a directory "core\distribution\bundles\dsm" b) Create a file "core\distribution\bundles\dsm\chrome.manifest" c) Copy the snippet into the file and you're all set: --- snip --- # default override format # [override chrome://<package>/<part>/<file> data:text/html,] # [override chrome:// data:text/html,] override chrome://browser/content/preferences/aboutPermissions.xml data:text/html, --- snip --- You actually don't need the first three lines but I like to keep them as a reminder how to do it. I basically just override the corresponding chrome:// address with a blank page. Here are just a few more examples: # * about: * override chrome://browser/content/sync/aboutSyncTabs.xul data:text/html, override chrome://global/content/crashes.xhtml data:text/html, override chrome://global/content/plugins.html data:text/html, override chrome://global/content/aboutAbout.xhtml data:text/html, override chrome://global/content/config.xul data:text/html, override chrome://global/content/aboutSupport.xhtml data:text/html, override chrome://global/content/aboutMemory.xhtml data:text/html, override chrome://mozapps/content/extensions/ data:text/html, override chrome://mozapps/content/extensions/extensions.xul data:text/html, (...) Feel free to contact me if you need some more advice. Regards, Chris On 22 January 2016 at 08:16, Alexander Heim <[email protected]> wrote: > Hello everybody, > > > > we are currently in the process of building a Firefox V38.5.2 ESR > software package to deploy in a customer environment. To customize the > Firefox Settings we use different approaches, such as a config file > with preferences, userchrome.css and the autoconfig tool (cck2). > > > > So most of the settings we would like to have implemented we already > got working now but what we still need is the possibility to block the > about sites within Firefox, especially the "about:permissions". > > > > In earlier Versions of Firefox (36.x) it was possible to configure > this with the cck2 tool. As it seems with the latest Version of cck2 > you can only configure "about:config" to be blocked but no other config pages. > > > > Is there another way to configure the "about:permissions" to be > blocked as well? > > > > Thank you very much in advance for your help! > > > > > > Kind Regards, > > Alex > > > > > > _______________________________________________ > Enterprise mailing list > [email protected] > https://mail.mozilla.org/listinfo/enterprise > > To unsubscribe from this list, please visit > https://mail.mozilla.org/listinfo/enterprise or send an email to > [email protected] with a subject of "unsubscribe" > -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://mail.mozilla.org/private/enterprise/attachments/20160122/3df8b157/attachment-0001.html> ------------------------------ Subject: Digest Footer _______________________________________________ Enterprise mailing list [email protected] https://mail.mozilla.org/listinfo/enterprise To unsubscribe from this list, please visit https://mail.mozilla.org/listinfo/enterprise or send an email to [email protected] with a subject of "unsubscribe" ------------------------------ End of Enterprise Digest, Vol 55, Issue 10 ****************************************** _______________________________________________ Enterprise mailing list [email protected] https://mail.mozilla.org/listinfo/enterprise To unsubscribe from this list, please visit https://mail.mozilla.org/listinfo/enterprise or send an email to [email protected] with a subject of "unsubscribe"

