summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-06 16:56:08 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-06 16:56:08 (EST)
commit5b69434a840829fea718c7248977b22be907412d (patch)
treecaa64a02513cd0dfaae3a9ff7fa5a1f5cd4342e9 /src/config
parentc902685c47e70bfbb45b74c4a1d2b631bd16974a (diff)
downloadmarquee-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.
Diffstat (limited to 'src/config')
-rw-r--r--src/config/config.c2
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);