Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

need to disable Hello functionality at workplace

  • 5 Mbohovái
  • 19 oguereko ko apañuãi
  • 9 Hecha
  • Mbohovái ipaháva 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?

Ñemoĩporã poravopyre

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

Emoñe’ẽ ko mbohavái ejeregua reheve 👍 2

Opaite Mbohovái (5)

more options

Ñemoĩporã poravopyre

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", "");