diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-08-04 09:28:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-04 09:28:37 +0300 |
commit | 88695b41a2ecdd72b905f97efa15921e75c73130 (patch) | |
tree | b8a982ca8739cdd7b5d08e6e7ec5cd90a4e38c8e /conf | |
parent | 8d13d8df65286c391765e8d0ec0571c693ae0676 (diff) | |
download | rspamd-88695b41a2ecdd72b905f97efa15921e75c73130.tar.gz rspamd-88695b41a2ecdd72b905f97efa15921e75c73130.zip |
[Minor] Fix key path in arc.conf examples (#1784)
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.d/arc.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/modules.d/arc.conf b/conf/modules.d/arc.conf index b36a50053..5a496bc0a 100644 --- a/conf/modules.d/arc.conf +++ b/conf/modules.d/arc.conf @@ -16,7 +16,7 @@ # https://rspamd.com/doc/modules/arc.html # To enable this module define the following attributes: -# path = "/var/lib/rspamd/arc/$domain.$selector.key"; +# path = "${DBDIR}/arc/$domain.$selector.key"; # OR # domain { ... }, if you use per-domain conf # OR @@ -34,7 +34,7 @@ arc { # If false, messages from authenticated users are not selected for signing auth_only = true; # Default path to key, can include '$domain' and '$selector' variables - #path = "/var/lib/rspamd/arc/$domain.$selector.key"; + #path = "${DBDIR}/arc/$domain.$selector.key"; # Default selector to use selector = "arc"; # If false, messages from local networks are not selected for signing @@ -56,7 +56,7 @@ arc { #domain { # example.com { # # Private key path - # path = "/var/lib/rspamd/arc/example.key"; + # path = "${DBDIR}/arc/example.key"; # # Selector # selector = "ds"; # } |