Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

policies.json

  • 3 risposte
  • 1 ha questo problema
  • 1 visualizzazione
  • Ultima risposta di cor-el

more options

Hi

I am having trouble with a proxy promt constantly asking me to log in but I do not want to use proxy so therefore my question regarding setting the proxy settings to "No Proxy" using the policies.json. Is this possible or do I have to do this manually on all users preferences?

Sincerely Seb

Hi I am having trouble with a proxy promt constantly asking me to log in but I do not want to use proxy so therefore my question regarding setting the proxy settings to "No Proxy" using the policies.json. Is this possible or do I have to do this manually on all users preferences? Sincerely Seb

Tutte le risposte (3)

more options
more options

So to I tried to set Proxy to "No Proxy" and used this, but still does not seem to work.

{

 "policies": {
   "Proxy": {
     "Mode": "none",
     "Locked": true,
   }
 }

}

more options

You shouldn't add a trailing comma before a closing '}' : "Locked": true You can check the about:policies#errors page to see whether errors are reported. ---

{
 "policies": {
   "Proxy": {
     "Mode": "none",
     "Locked": true
   }
 }
}