diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-02-21 11:24:19 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-02-21 11:24:19 +0000 |
commit | 50e9652789628026d15e08c3e891e50364375fc6 (patch) | |
tree | 3e0da4a8b91a2281c87b178adef97b1ef8a2f92d /conf | |
parent | 8c8f53d783edb077d067a26c122fc5f42acbb954 (diff) | |
download | rspamd-50e9652789628026d15e08c3e891e50364375fc6.tar.gz rspamd-50e9652789628026d15e08c3e891e50364375fc6.zip |
[Fix] Fix history key, as we use `{=` and not `{{` in templates
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.d/history_redis.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/modules.d/history_redis.conf b/conf/modules.d/history_redis.conf index b55d2fbba..141f9df32 100644 --- a/conf/modules.d/history_redis.conf +++ b/conf/modules.d/history_redis.conf @@ -14,7 +14,7 @@ history_redis { #servers = 127.0.0.1:6379; # Redis server to store history - key_prefix = "rs_history{{HOSTNAME}}{{COMPRESS}}"; # Default key name template + key_prefix = "rs_history{=HOSTNAME=}{=COMPRESS=}"; # Default key name template nrows = 200; # Default rows limit compress = true; # Use zstd compression when storing data in redis subject_privacy = false; # subject privacy is off |