mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
fixing use_redis in dkim_signing.conf
This commit is contained in:
committed by
Franco Fichtner
parent
34af0c3bec
commit
e7ca529772
@@ -15,7 +15,7 @@
|
||||
try_fallback = {% if helpers.exists('OPNsense.Rspamd.dkim.try_fallback') and OPNsense.Rspamd.dkim.try_fallback == '1' %}true{% else %}false{% endif %};
|
||||
use_domain = "{{ OPNsense.Rspamd.dkim.use_domain|default("header") }}";
|
||||
use_esld = {% if helpers.exists('OPNsense.Rspamd.dkim.use_esld') and OPNsense.Rspamd.dkim.use_esld == '1' %}true{% else %}false{% endif %};
|
||||
use_redis = false;
|
||||
use_redis = {% if helpers.exists('OPNsense.Rspamd.general.enable_redis_plugin') and OPNsense.Rspamd.general.enable_redis_plugin == '1' %}true{% else %}false{% endif %};
|
||||
# Hash for DKIM keys in Redis
|
||||
key_prefix = "DKIM_KEYS";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user