mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-05-24 00:00:08 +02:00
docs: Rspamd DKIM config simplify via path
setting (#3702)
docs: Rspamd DKIM config (`dkim_signing.conf`) example has been simplified via `path` + `selector` settings. --------- Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
This commit is contained in:
parent
1449629479
commit
ce6ebcc021
@ -156,6 +156,13 @@ DKIM is currently supported by either OpenDKIM or Rspamd:
|
|||||||
use_esld = true;
|
use_esld = true;
|
||||||
check_pubkey = true; # you want to use this in the beginning
|
check_pubkey = true; # you want to use this in the beginning
|
||||||
|
|
||||||
|
selector = "mail";
|
||||||
|
# The path location is searched for a DKIM key with these variables:
|
||||||
|
# - `$domain` is sourced from the MIME mail message `From` header
|
||||||
|
# - `$selector` is configured for `mail` (as a default fallback)
|
||||||
|
path = "/tmp/docker-mailserver/dkim/keys/$domain/$selector.private";
|
||||||
|
|
||||||
|
# domain specific configurations can be provided below:
|
||||||
domain {
|
domain {
|
||||||
example.com {
|
example.com {
|
||||||
path = "/tmp/docker-mailserver/rspamd/dkim/mail.private";
|
path = "/tmp/docker-mailserver/rspamd/dkim/mail.private";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user