]> gitweb.michael.orlitzky.com - firefox-user-prefs.git/blob - referer
makefile: sort SRCS alphabetically
[firefox-user-prefs.git] / referer
1 /* Referer obfuscation */
2
3
4 /* Only send the "referer" header when I _do_ something.
5 *
6 * References:
7 *
8 * 1. https://wiki.mozilla.org/Security/Referrer
9 *
10 */
11 user_pref("network.http.sendRefererHeader", 1);
12
13
14 /* Don't send the "referer" header for cross-domain requests.
15 *
16 * References:
17 *
18 * 1. https://wiki.mozilla.org/Security/Referrer
19 *
20 */
21 user_pref("network.http.referer.XOriginPolicy", 1);
22
23
24 /* Don't send the querystring across origins (that is, to subdomains,
25 * since XOriginPolicy is set to "1" above).
26 *
27 * References:
28 *
29 * 1. https://wiki.mozilla.org/Security/Referrer
30 *
31 */
32 user_pref("network.http.referer.XOriginTrimmingPolicy", 1);
33