Files
docker-mail/include/etc/amavis/conf.d/99-dkim-keys
Jon Lockwood 53e0cdd171 refactor(amavis): move dkim key config to own file
using a seperate file for the DKIM key configuration enables the user
to easily configure with their settings.

MR !4
2022-02-16 14:17:26 +09:30

19 lines
311 B
Plaintext

dkim_key(
'example.org',
'dkim',
'/certs/amavis/dkim/example.org.dkim.pem'
);
@dkim_signature_options_bysender_maps = (
{
"example.org" => {
s => 'dkim',
d => 'example.org',
a => 'rsa-sha256',
ttl => 10*24*3600
}
}
);