diff options
author | Klaus Umbach <klaus-github@uxix.de> | 2018-03-19 20:38:26 +0100 |
---|---|---|
committer | Klaus Umbach <klaus-github@uxix.de> | 2018-03-19 20:38:26 +0100 |
commit | e93878382153797c447335875fd82a90f587be97 (patch) | |
tree | 2dc40f3ef0cc9d2bfbd43cf6f43e4a89069ec17b | |
parent | e2cc1cae630617928683cef73f6e61101ae65354 (diff) | |
download | rspamd-e93878382153797c447335875fd82a90f587be97.tar.gz rspamd-e93878382153797c447335875fd82a90f587be97.zip |
added config-options to default-config
-rw-r--r-- | conf/modules.d/history_redis.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/modules.d/history_redis.conf b/conf/modules.d/history_redis.conf index 30ff6bbee..0b85f3e01 100644 --- a/conf/modules.d/history_redis.conf +++ b/conf/modules.d/history_redis.conf @@ -18,8 +18,10 @@ history_redis { key_prefix = "rs_history"; # Default key name nrows = 200; # Default rows limit compress = true; # Use zstd compression when storing data in redis + subject_privacy = false; # subject privacy is off + subject_privacy_alg = 'md5'; # default hash-algorithm to obfuscate subject .include(try=true,priority=5) "${DBDIR}/dynamic/history_redis.conf" .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/history_redis.conf" .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/history_redis.conf" -}
\ No newline at end of file +} |