Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

need to disable Hello functionality at workplace

  • 5 个回答
  • 19 人有此问题
  • 9 次查看
  • 最后回复者为 cor-el

more options

Need to disable Hello at my workplace. How can this service be blocked with our Web Security Appliance or Firewall?

Need to disable Hello at my workplace. How can this service be blocked with our Web Security Appliance or Firewall?

被采纳的解决方案

hi, you could try blocking loop.services.mozilla.com which is the server used for call setup...

定位到答案原位置 👍 2

所有回复 (5)

more options

选择的解决方案

hi, you could try blocking loop.services.mozilla.com which is the server used for call setup...

more options

Thanks, will look at blocking that URL.

more options

You can also consider to lock some loop prefs.

//
lockPref("loop.enabled", false);
lockPref("loop.server", "");

Use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

See:

more options

can something like this be use to disable hello locally?

more options

Can you clarify about what you would try to achieve and to what reply you are referring?

If you would loop.server (https://loop.services.mozilla.com/v0) to an empty string then Firefox won't be able to access the server. This will work for all Firefox profiles that are started via the Firefox installation that has the mozilla.cfg file.


//
lockPref("loop.enabled", false);
lockPref("loop.server", "");