mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
14 lines
339 B
Text
14 lines
339 B
Text
# DKIM signing
|
||
# Note that DKIM signing should be done by rspamd in the near future
|
||
# See https://github.com/vstakhov/rmilter/issues/174
|
||
dkim {
|
||
enable = true;
|
||
domain {
|
||
key = /etc/dkim;
|
||
domain = "*";
|
||
selector = "mail";
|
||
};
|
||
header_canon = relaxed;
|
||
body_canon = relaxed;
|
||
sign_alg = sha256;
|
||
};
|