2024-11-02 14:58:10 +01:00
- [Summary ](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/branch/1.1/README.md )
2024-11-02 14:59:07 +01:00
- [[tutorial 104] xxx](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_104/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_104~1..v1.1_104))
2024-11-02 14:58:10 +01:00
2024-11-02 14:59:07 +01:00
# [tutorial 110] xxx
2024-11-02 14:58:10 +01:00
2024-11-02 14:59:07 +01:00
[View the diff ](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_110~1..v1.1_110 )
2024-11-02 14:58:10 +01:00
2024-11-02 14:58:09 +01:00
## Screenshot
< img src = "firefox.png" width = 50% height = 50% alt = "Firefox Proxy setting" / >
## Structure
2024-11-02 14:58:10 +01:00
### firefox/00-proxy.yml
```yml
---
2024-11-02 14:58:12 +01:00
proxy_mode:
2024-11-02 14:58:13 +01:00
description: Configure Proxy Access to the Internet
2024-11-02 14:58:14 +01:00
choices:
- No proxy
- Auto-detect proxy settings for this network
- Use system proxy settings
- Manual proxy configuration
- Automatic proxy configuration URL
2024-11-02 14:58:13 +01:00
default: No proxy
2024-11-02 14:58:10 +01:00
```
2024-11-02 14:58:16 +01:00
### firefox/10-manual.yml
2024-11-02 14:58:12 +01:00
```yml
---
2024-11-02 14:58:16 +01:00
manual:
description: Manual proxy configuration
2024-11-02 14:58:24 +01:00
disabled:
2024-11-02 14:58:57 +01:00
variable: _.proxy_mode
2024-11-02 14:58:24 +01:00
when_not: 'Manual proxy configuration'
2024-11-02 14:58:12 +01:00
2024-11-02 14:58:38 +01:00
http_proxy: # HTTP Proxy
2024-11-02 14:58:17 +01:00
2024-11-02 14:58:18 +01:00
address:
description: HTTP address
2024-11-02 14:58:20 +01:00
type: domainname
2024-11-02 14:58:21 +01:00
params:
allow_ip: true
2024-11-02 14:58:18 +01:00
2024-11-02 14:58:22 +01:00
port:
description: HTTP Port
type: port
default: 8080
2024-11-02 14:58:26 +01:00
```
### firefox/20-manual.yml
```yml
---
manual:
2024-11-02 14:58:39 +01:00
use_for_https: true # Also use this proxy for HTTPS
2024-11-02 14:58:26 +01:00
2024-11-02 14:58:33 +01:00
"{{ identifier }}_proxy":
description: "{{ identifier }} Proxy"
dynamic:
- HTTPS
- SOCKS
2024-11-02 14:58:30 +01:00
hidden:
2024-11-02 14:58:34 +01:00
jinja: |
2024-11-02 14:58:57 +01:00
{% if my_identifier == 'HTTPS' and _.use_for_https %}
2024-11-02 14:58:34 +01:00
HTTPS is same has HTTP
{% endif %}
2024-11-02 14:58:35 +01:00
params:
my_identifier:
type: identifier
2024-11-02 14:58:36 +01:00
description: |
in HTTPS case if "manual.use_for_https" is set to True
2024-11-02 14:58:28 +01:00
address:
2024-11-02 14:58:33 +01:00
description: "{{ identifier }} address"
2024-11-02 14:58:31 +01:00
default:
2024-11-02 14:58:58 +01:00
variable: __ .http_proxy.address
2024-11-02 14:58:28 +01:00
port:
2024-11-02 14:58:33 +01:00
description: "{{ identifier }} port"
2024-11-02 14:58:31 +01:00
default:
2024-11-02 14:58:58 +01:00
variable: __ .http_proxy.port
2024-11-02 14:58:28 +01:00
2024-11-02 14:58:37 +01:00
version:
description: SOCKS host version used by proxy
choices:
- v4
- v5
default: v5
disabled:
type: identifier
when: 'HTTPS'
2024-11-02 14:58:40 +01:00
```
### firefox/30-auto.yml
```yml
---
auto:
description: Automatic proxy configuration URL
type: web_address
2024-11-02 14:58:41 +01:00
disabled:
2024-11-02 14:58:57 +01:00
variable: _.proxy_mode
2024-11-02 14:58:41 +01:00
when_not: Automatic proxy configuration URL
2024-11-02 14:58:40 +01:00
2024-11-02 14:58:42 +01:00
```
### firefox/40-no_proxy.yml
```yml
---
no_proxy:
description: Address for which proxy will be desactivated
type: "domainname"
params:
allow_ip: true
allow_cidr_network: true
allow_without_dot: true
allow_startswith_dot: true
2024-11-02 14:58:43 +01:00
multi: true
2024-11-02 14:58:44 +01:00
mandatory: false
2024-11-02 14:58:42 +01:00
disabled:
2024-11-02 14:58:57 +01:00
variable: _.proxy_mode
2024-11-02 14:58:42 +01:00
when: No proxy
2024-11-02 14:58:46 +01:00
examples:
- .mozilla.org
- .net.nz
- 192.168.1.0/24
2024-11-02 14:58:47 +01:00
help: Connections to localhost, 127.0.0.1/8 and ::1 are never proxied
2024-11-02 14:58:42 +01:00
2024-11-02 14:58:48 +01:00
```
### firefox/50-prompt_authentication.yml
```yml
---
prompt_authentication:
description: Prompt for authentication if password is saved
default: true
disabled:
2024-11-02 14:58:57 +01:00
variable: _.proxy_mode
2024-11-02 14:58:48 +01:00
when: No proxy
2024-11-02 14:58:49 +01:00
```
### firefox/55-proxy_dns_socks5.yml
```yml
---
proxy_dns_socks5:
description: Use proxy DNS when using SOCKS v5
default: false
2024-11-02 14:58:52 +01:00
mode: advanced
2024-11-02 14:58:50 +01:00
disabled:
jinja: |
2024-11-02 14:58:57 +01:00
{% if _.manual.socks_proxy.version is propertyerror %}
2024-11-02 14:58:50 +01:00
the proxy mode is not manual
2024-11-02 14:58:57 +01:00
{% elif _.manual.socks_proxy.version == 'v4' %}
2024-11-02 14:58:50 +01:00
socks version is v4
{% endif %}
description: |
if "firefox.proxy_mode" is not "Manual proxy configuration"
or "firefox.manual.socks_proxy.version" is "v4"
2024-11-02 14:58:49 +01:00
2024-11-02 14:58:52 +01:00
```
### firefox/60-dns_over_https.yml
```yml
---
dns_over_https: # DNS over HTTPS
enable_dns_over_https: false # Enable DNS over HTTPS
2024-11-02 14:58:54 +01:00
provider:
description: Use Provider
choices:
- Cloudflare
- NextDNS
- Custom
default: Cloudflare
disabled:
2024-11-02 14:58:57 +01:00
variable: _.enable_dns_over_https
2024-11-02 14:58:54 +01:00
when: false
2024-11-02 14:58:55 +01:00
custom_dns_url:
description: Custom DNS URL
type: web_address
disabled:
jinja: |
2024-11-02 14:58:57 +01:00
{% if _.provider is propertyerror or _ .provider != 'Custom' %}
2024-11-02 14:58:55 +01:00
provider is not custom
{% endif %}
description: if "dns_over_https.provider" is not "Custom"
2024-11-02 14:58:56 +01:00
validators:
- jinja: |
{% if dns_over_https.custom_dns_url.startswith('http://') %}
only https is allowed
{% endif %}
description: must starts with 'https://' only
2024-11-02 14:58:55 +01:00
2024-11-02 14:58:59 +01:00
```
### firefox/empty.yml
```yml
2024-11-02 14:59:00 +01:00
```
### foxyproxy/00-foxyproxy.yml
```yml
---
2024-11-02 14:59:01 +01:00
proxies:
description: Proxy configuration
2024-11-02 14:59:04 +01:00
_type: leadership
2024-11-02 14:59:01 +01:00
title:
description: Title or Description
mandatory: false
2024-11-02 14:59:04 +01:00
type:
description: Proxy Type
choices:
- HTTP
- HTTPS/SSL
- SOCKS4
- SOCKS5
- PAC URL
- WPAD
- System (use system settings)
- Direct (no proxy)
default: Direct (no proxy)
2024-11-02 14:59:01 +01:00
color:
description: Color
2024-11-02 14:59:03 +01:00
regexp: "^#(?:[0-9a-f]{3}){1,2}$"
auto_save: true
default:
jinja: |
#
{%- for i in range(6) -%}
{{- '0123456789abcdef' | random -}}
{%- endfor -%}
description: random color value
2024-11-02 14:59:00 +01:00
2024-11-02 14:59:05 +01:00
address:
description: IP address, DNS name, server name
type: domainname
params:
allow_ip: true
allow_without_dot: true
disabled: & needs_address
jinja: |
{% if _.type not in ['HTTP', 'HTTPS/SSL', 'SOCKS4', 'SOCKS5'] %}
disabled
{% endif %}
description: |
if type not in:
- HTTP
- HTTPS/SSL
- SOCKS4
- SOCKS5
default:
jinja: |
{% if firefox.manual.http_proxy.address is not propertyerror %}
{{ firefox.manual.http_proxy.address }}
{% endif %}
description: copy HTTP address if proxy is not "Manual"
port:
description: Port
type: port
default:
jinja: |
{% if firefox.manual.http_proxy.port is not propertyerror %}
{{ firefox.manual.http_proxy.port }}
{% endif %}
description: copy HTTP port if proxy is not "Manual"
disabled: *needs_address
username:
description: Username
type: unix_user
mandatory:
jinja: |
{% if _.password is not propertyerror and _ .password %}
username is mandatory
{% endif %}
description: if a password is set
disabled: *needs_address
password:
description: Password
type: secret
mandatory: false
disabled: *needs_address
url:
description: URL
type: web_address
disabled:
jinja: |
{% if _.type not in ['PAC URL', 'WPAD'] %}
proxy does not need url
{% endif %}
description: |
if type is not in:
- PAC URL
- WPAD
default:
jinja: |
{% if firefox.auto is not propertyerror %}
{{ firefox.auto }}
{% endif %}
description: copy HTTP address if proxy is "Auto"
2024-11-02 14:59:07 +01:00
```
### foxyproxy/10-redefine.yml
```yml
---
proxies:
username:
redefine: true
mandatory: false
password:
redefine: true
hidden:
type: jinja
jinja: |
{% if not _.username %}
no username defined
{% endif %}
description: if username is not defined
2024-11-02 14:58:12 +01:00
```
2024-11-02 14:58:16 +01:00
### Generated documentation
2024-11-02 14:58:12 +01:00
```console
2024-11-02 14:59:00 +01:00
foo@bar:~$ rougail -v 1.1 -m firefox/ -s Firefox -xn FoxyProxy -xd 0 foxyproxy/ --modes_level basic standard advanced -o doc -do github
2024-11-02 14:58:12 +01:00
```
2024-11-02 14:59:00 +01:00
### Variables for "firefox"
2024-11-02 14:58:12 +01:00
2024-11-02 14:58:55 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2024-11-02 14:59:00 +01:00
| **firefox.proxy_mode** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Configure Proxy Access to the Internet.< br /> **Choices**: < br /> - No proxy ← (default)< br /> - Auto-detect proxy settings for this network< br /> - Use system proxy settings< br /> - Manual proxy configuration< br /> - Automatic proxy configuration URL |
2024-11-02 14:58:24 +01:00
#### Manual proxy configuration
2024-11-02 14:58:52 +01:00
`basic` _`disabled`_
2024-11-02 14:58:24 +01:00
2024-11-02 14:59:00 +01:00
**Disabled**: when the variable "firefox.proxy_mode" hasn't the value "Manual proxy configuration".
2024-11-02 14:58:24 +01:00
##### HTTP Proxy
2024-11-02 14:58:52 +01:00
`basic`
2024-11-02 14:58:28 +01:00
2024-11-02 14:58:55 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2024-11-02 14:59:00 +01:00
| **firefox.manual.http_proxy.address** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | HTTP address.< br /> **Validator**: the domain name can be an IP |
| **firefox.manual.http_proxy.port** < br /> [`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | HTTP Port.< br /> **Default**: 8080 |
2024-11-02 14:58:52 +01:00
2024-11-02 14:58:55 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2024-11-02 14:59:00 +01:00
| **firefox.manual.use_for_https** < br /> [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Also use this proxy for HTTPS.< br /> **Default**: True |
2024-11-02 14:58:30 +01:00
2024-11-02 14:58:33 +01:00
##### "*HTTPS* Proxy" or "*SOCKS* Proxy"
2024-11-02 14:58:30 +01:00
2024-11-02 14:58:52 +01:00
`standard` _`hidden`_
2024-11-02 14:58:30 +01:00
2024-11-02 14:58:36 +01:00
**Hidden**: in HTTPS case if "manual.use_for_https" is set to True.
2024-11-02 14:58:30 +01:00
2024-11-02 14:58:33 +01:00
This family builds families dynamically.
**Identifiers**: < br / > - HTTPS< br / > - SOCKS
2024-11-02 14:58:55 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2024-11-02 14:59:00 +01:00
| **firefox.manual.https_proxy.address** or **firefox.manual.socks_proxy.address** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | "*HTTPS* address" or "*SOCKS* address".< br /> **Validator**: the domain name can be an IP< br /> **Default**: the value of the variable "firefox.manual.http_proxy.address". |
| **firefox.manual.https_proxy.port** or **firefox.manual.socks_proxy.port** < br /> [`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | "*HTTPS* port" or "*SOCKS* port".< br /> **Default**: the value of the variable "firefox.manual.http_proxy.port". |
| **firefox.manual.https_proxy.version** or **firefox.manual.socks_proxy.version** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | SOCKS host version used by proxy.< br /> **Choices**: < br /> - v4< br /> - v5 ← (default)< br /> **Disabled**: when the identifier is "HTTPS". |
2024-11-02 14:58:52 +01:00
2024-11-02 14:58:55 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2024-11-02 14:59:00 +01:00
| **firefox.auto** < br /> [`web_address`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` _`disabled`_ | Automatic proxy configuration URL.< br /> **Disabled**: when the variable "firefox.proxy_mode" hasn't the value "Automatic proxy configuration URL". |
| **firefox.no_proxy** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` _`disabled`_ `unique` `multiple` | Address for which proxy will be desactivated.< br /> Connections to localhost, 127.0.0.1/8 and ::1 are never proxied.< br /> **Validators**:< br /> - the domain name can starts by a dot< br /> - the domain name can be a hostname< br /> - the domain name can be an IP< br /> - the domain name can be network in CIDR format< br /> **Examples**: < br /> - .mozilla.org< br /> - .net.nz< br /> - 192.168.1.0/24< br /> **Disabled**: when the variable "firefox.proxy_mode" has the value "No proxy". |
| **firefox.prompt_authentication** < br /> [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | Prompt for authentication if password is saved.< br /> **Default**: True< br /> **Disabled**: when the variable "firefox.proxy_mode" has the value "No proxy". |
2024-11-02 14:58:52 +01:00
#### DNS over HTTPS
2024-11-02 14:58:40 +01:00
2024-11-02 14:58:55 +01:00
`basic`
2024-11-02 14:58:52 +01:00
2024-11-02 14:58:55 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2024-11-02 14:59:00 +01:00
| **firefox.dns_over_https.enable_dns_over_https** < br /> [`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Enable DNS over HTTPS.< br /> **Default**: False |
| **firefox.dns_over_https.provider** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | Use Provider.< br /> **Choices**: < br /> - Cloudflare ← (default)< br /> - NextDNS< br /> - Custom< br /> **Disabled**: when the variable "firefox.dns_over_https.enable_dns_over_https" has the value "False". |
| **firefox.dns_over_https.custom_dns_url** < br /> [`web_address`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` _`disabled`_ | Custom DNS URL.< br /> **Validator**: must starts with 'https://' only.< br /> **Disabled**: if "dns_over_https.provider" is not "Custom". |
2024-11-02 14:59:01 +01:00
### Variables for "foxyproxy"
#### Proxy configuration
`basic`
This family contains lists of variable blocks.
2024-11-02 14:59:05 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **foxyproxy.proxies.title** < br /> [`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Title or Description. |
| **foxyproxy.proxies.type** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Proxy Type.< br /> **Choices**: < br /> - HTTP< br /> - HTTPS/SSL< br /> - SOCKS4< br /> - SOCKS5< br /> - PAC URL< br /> - WPAD< br /> - System (use system settings)< br /> - Direct (no proxy) ← (default) |
| **foxyproxy.proxies.color** < br /> [`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `auto modified` | Color.< br /> **Default**: random color value. |
| **foxyproxy.proxies.address** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | IP address, DNS name, server name.< br /> **Validators**:< br /> - the domain name can be a hostname< br /> - the domain name can be an IP< br /> **Default**: copy HTTP address if proxy is not "Manual".< br /> **Disabled**: if type not in:< br /> - HTTP< br /> - HTTPS/SSL< br /> - SOCKS4< br /> - SOCKS5. |
| **foxyproxy.proxies.port** < br /> [`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | Port.< br /> **Default**: copy HTTP port if proxy is not "Manual".< br /> **Disabled**: if type not in:< br /> - HTTP< br /> - HTTPS/SSL< br /> - SOCKS4< br /> - SOCKS5. |
2024-11-02 14:59:07 +01:00
| **foxyproxy.proxies.username** < br /> [`unix_user`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` _`disabled`_ | Username.< br /> **Disabled**: if type not in:< br /> - HTTP< br /> - HTTPS/SSL< br /> - SOCKS4< br /> - SOCKS5. |
| **foxyproxy.proxies.password** < br /> [`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` _`hidden`_ _`disabled`_ | Password.< br /> **Hidden**: if username is not defined.< br /> **Disabled**: if type not in:< br /> - HTTP< br /> - HTTPS/SSL< br /> - SOCKS4< br /> - SOCKS5. |
2024-11-02 14:59:05 +01:00
| **foxyproxy.proxies.url** < br /> [`web_address`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` _`disabled`_ | URL.< br /> **Default**: copy HTTP address if proxy is "Auto".< br /> **Disabled**: if type is not in:< br /> - PAC URL< br /> - WPAD. |
2024-11-02 14:59:01 +01:00