diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-06 16:56:08 (EST) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-06 16:56:08 (EST) |
commit | 5b69434a840829fea718c7248977b22be907412d (patch) | |
tree | caa64a02513cd0dfaae3a9ff7fa5a1f5cd4342e9 | |
parent | c902685c47e70bfbb45b74c4a1d2b631bd16974a (diff) | |
download | marquee-5b69434a840829fea718c7248977b22be907412d.zip marquee-5b69434a840829fea718c7248977b22be907412d.tar.gz marquee-5b69434a840829fea718c7248977b22be907412d.tar.bz2 |
mq_config_new(): Set cookies.accept to "no-third-party" by default
For any profile type.
-rw-r--r-- | src/config/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/config.c b/src/config/config.c index 9951765..fbaf7d8 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -154,7 +154,7 @@ set_defaults(MqConfig *config, MqConfigProfile profile) profile != MQ_CONFIG_PROFILE_PRIVATE); /* Security and Privacy -> Cookies */ - SET_STR ("cookies.accept", "always"); + SET_STR ("cookies.accept", "no-third-party"); /* Security and Privacy -> Security */ SET_BOOL("security.xss-auditor.enable", TRUE); |